pub struct ElfSection<'data, 'file, Elf> where
    'data: 'file,
    Elf: FileHeader,  { /* private fields */ }Expand description
A section of an ElfFile.
Trait Implementations
sourceimpl<'data, 'file, Elf: Debug> Debug for ElfSection<'data, 'file, Elf> where
    'data: 'file,
    Elf: FileHeader,
    Elf::SectionHeader: Debug, 
 
impl<'data, 'file, Elf: Debug> Debug for ElfSection<'data, 'file, Elf> where
    'data: 'file,
    Elf: FileHeader,
    Elf::SectionHeader: Debug, 
sourceimpl<'data, 'file, Elf: FileHeader> ObjectSection<'data> for ElfSection<'data, 'file, Elf>
 
impl<'data, 'file, Elf: FileHeader> ObjectSection<'data> for ElfSection<'data, 'file, Elf>
type RelocationIterator = ElfSectionRelocationIterator<'data, 'file, Elf>
type RelocationIterator = ElfSectionRelocationIterator<'data, 'file, Elf>
An iterator over the relocations for a section. Read more
sourcefn index(&self) -> SectionIndex
 
fn index(&self) -> SectionIndex
Returns the section index.
sourcefn file_range(&self) -> Option<(u64, u64)>
 
fn file_range(&self) -> Option<(u64, u64)>
Returns offset and size of on-disk segment (if any).
sourcefn data_range(&self, address: u64, size: u64) -> Result<Option<&'data [u8]>>
 
fn data_range(&self, address: u64, size: u64) -> Result<Option<&'data [u8]>>
Return the raw contents of the section data in the given range. Read more
sourcefn compressed_data(&self) -> Result<CompressedData<'data>>
 
fn compressed_data(&self) -> Result<CompressedData<'data>>
Returns the potentially compressed contents of the section, along with information about the compression. Read more
sourcefn segment_name(&self) -> Result<Option<&str>>
 
fn segment_name(&self) -> Result<Option<&str>>
Returns the name of the segment for this section.
sourcefn kind(&self) -> SectionKind
 
fn kind(&self) -> SectionKind
Return the kind of this section.
sourcefn relocations(&self) -> ElfSectionRelocationIterator<'data, 'file, Elf>ⓘNotable traits for ElfSectionRelocationIterator<'data, 'file, Elf>impl<'data, 'file, Elf: FileHeader> Iterator for ElfSectionRelocationIterator<'data, 'file, Elf>    type Item = (u64, Relocation);
 
fn relocations(&self) -> ElfSectionRelocationIterator<'data, 'file, Elf>ⓘNotable traits for ElfSectionRelocationIterator<'data, 'file, Elf>impl<'data, 'file, Elf: FileHeader> Iterator for ElfSectionRelocationIterator<'data, 'file, Elf>    type Item = (u64, Relocation);
Get the relocations for this section.
sourcefn flags(&self) -> SectionFlags
 
fn flags(&self) -> SectionFlags
Section flags that are specific to each file format.
Auto Trait Implementations
impl<'data, 'file, Elf> RefUnwindSafe for ElfSection<'data, 'file, Elf> where
    Elf: RefUnwindSafe,
    <Elf as FileHeader>::Endian: RefUnwindSafe,
    <Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
    <Elf as FileHeader>::SectionHeader: RefUnwindSafe,
    <Elf as FileHeader>::Sym: RefUnwindSafe, 
impl<'data, 'file, Elf> Send for ElfSection<'data, 'file, Elf> where
    Elf: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync, 
impl<'data, 'file, Elf> Sync for ElfSection<'data, 'file, Elf> where
    Elf: Sync,
    <Elf as FileHeader>::Endian: Sync,
    <Elf as FileHeader>::ProgramHeader: Sync,
    <Elf as FileHeader>::SectionHeader: Sync,
    <Elf as FileHeader>::Sym: Sync, 
impl<'data, 'file, Elf> Unpin for ElfSection<'data, 'file, Elf> where
    'data: 'file, 
impl<'data, 'file, Elf> UnwindSafe for ElfSection<'data, 'file, Elf> where
    Elf: RefUnwindSafe,
    <Elf as FileHeader>::Endian: RefUnwindSafe,
    <Elf as FileHeader>::ProgramHeader: RefUnwindSafe,
    <Elf as FileHeader>::SectionHeader: RefUnwindSafe,
    <Elf as FileHeader>::Sym: RefUnwindSafe, 
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
 
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more