Struct object::read::coff::CoffSection [−][src]
pub struct CoffSection<'data, 'file> where
'data: 'file, { /* fields omitted */ }
A section of a CoffFile
.
Trait Implementations
impl<'data, 'file> Debug for CoffSection<'data, 'file> where
'data: 'file,
[src]
impl<'data, 'file> Debug for CoffSection<'data, 'file> where
'data: 'file,
[src]impl<'data, 'file> ObjectSection<'data> for CoffSection<'data, 'file>
[src]
impl<'data, 'file> ObjectSection<'data> for CoffSection<'data, 'file>
[src]type RelocationIterator = CoffRelocationIterator<'data, 'file>
An iterator over the relocations for a section. Read more
fn index(&self) -> SectionIndex
[src]
fn address(&self) -> u64
[src]
fn size(&self) -> u64
[src]
fn align(&self) -> u64
[src]
fn file_range(&self) -> Option<(u64, u64)>
[src]
fn data(&self) -> Result<&'data [u8]>
[src]
fn data_range(&self, address: u64, size: u64) -> Result<Option<&'data [u8]>>
[src]
fn compressed_data(&self) -> Result<CompressedData<'data>>
[src]
fn name(&self) -> Result<&str>
[src]
fn segment_name(&self) -> Result<Option<&str>>
[src]
fn kind(&self) -> SectionKind
[src]
fn relocations(&self) -> CoffRelocationIterator<'data, 'file>ⓘNotable traits for CoffRelocationIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffRelocationIterator<'data, 'file> type Item = (u64, Relocation);
[src]
Notable traits for CoffRelocationIterator<'data, 'file>
impl<'data, 'file> Iterator for CoffRelocationIterator<'data, 'file> type Item = (u64, Relocation);
fn flags(&self) -> SectionFlags
[src]
fn uncompressed_data(&self) -> Result<Cow<'data, [u8]>>
[src]
Auto Trait Implementations
impl<'data, 'file> Send for CoffSection<'data, 'file>
impl<'data, 'file> Sync for CoffSection<'data, 'file>
impl<'data, 'file> Unpin for CoffSection<'data, 'file> where
'data: 'file,
'data: 'file,