pub struct MachOSection<'data, 'file, Mach, R = &'data [u8]>where
    Mach: MachHeader,
    R: ReadRef<'data>,{
    pub(super) file: &'file MachOFile<'data, Mach, R>,
    pub(super) internal: MachOSectionInternal<'data, Mach, R>,
}Expand description
A section in a MachOFile.
Most functionality is provided by the ObjectSection trait implementation.
Fields§
§file: &'file MachOFile<'data, Mach, R>§internal: MachOSectionInternal<'data, Mach, R>Implementations§
Source§impl<'data, 'file, Mach, R> MachOSection<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
 
impl<'data, 'file, Mach, R> MachOSection<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
Sourcepub fn macho_file(&self) -> &'file MachOFile<'data, Mach, R>
 
pub fn macho_file(&self) -> &'file MachOFile<'data, Mach, R>
Get the Mach-O file containing this section.
Sourcepub fn macho_section(&self) -> &'data Mach::Section
 
pub fn macho_section(&self) -> &'data Mach::Section
Get the raw Mach-O section structure.
Sourcepub fn macho_relocations(&self) -> Result<&'data [Relocation<Mach::Endian>]>
 
pub fn macho_relocations(&self) -> Result<&'data [Relocation<Mach::Endian>]>
Get the raw Mach-O relocation entries.
fn bytes(&self) -> Result<&'data [u8]>
fn maybe_compressed_gnu(&self) -> Result<Option<CompressedFileRange>>
Trait Implementations§
Source§impl<'data, 'file, Mach, R> Debug for MachOSection<'data, 'file, Mach, R>
 
impl<'data, 'file, Mach, R> Debug for MachOSection<'data, 'file, Mach, R>
Source§impl<'data, 'file, Mach, R> ObjectSection<'data> for MachOSection<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
 
impl<'data, 'file, Mach, R> ObjectSection<'data> for MachOSection<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
Source§type RelocationIterator = MachORelocationIterator<'data, 'file, Mach, R>
 
type RelocationIterator = MachORelocationIterator<'data, 'file, Mach, R>
An iterator for the relocations for a section. Read more
Source§fn index(&self) -> SectionIndex
 
fn index(&self) -> SectionIndex
Returns the section index.
Source§fn file_range(&self) -> Option<(u64, u64)>
 
fn file_range(&self) -> Option<(u64, u64)>
Returns offset and size of on-disk segment (if any).
Source§fn 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
Source§fn compressed_file_range(&self) -> Result<CompressedFileRange>
 
fn compressed_file_range(&self) -> Result<CompressedFileRange>
Returns the potentially compressed file range of the section,
along with information about the compression.
Source§fn 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.
Source§fn name_bytes(&self) -> Result<&'data [u8]>
 
fn name_bytes(&self) -> Result<&'data [u8]>
Returns the name of the section.
Source§fn segment_name_bytes(&self) -> Result<Option<&[u8]>>
 
fn segment_name_bytes(&self) -> Result<Option<&[u8]>>
Returns the name of the segment for this section.
Source§fn segment_name(&self) -> Result<Option<&str>>
 
fn segment_name(&self) -> Result<Option<&str>>
Returns the name of the segment for this section. Read more
Source§fn kind(&self) -> SectionKind
 
fn kind(&self) -> SectionKind
Return the kind of this section.
Source§fn relocations(&self) -> MachORelocationIterator<'data, 'file, Mach, R> ⓘ
 
fn relocations(&self) -> MachORelocationIterator<'data, 'file, Mach, R> ⓘ
Get the relocations for this section.
Source§fn relocation_map(&self) -> Result<RelocationMap>
 
fn relocation_map(&self) -> Result<RelocationMap>
Construct a relocation map for this section.
Source§fn flags(&self) -> SectionFlags
 
fn flags(&self) -> SectionFlags
Section flags that are specific to each file format.
impl<'data, 'file, Mach, R> Sealed for MachOSection<'data, 'file, Mach, R>where
    Mach: MachHeader,
    R: ReadRef<'data>,
Auto Trait Implementations§
impl<'data, 'file, Mach, R> Freeze for MachOSection<'data, 'file, Mach, R>where
    R: Freeze,
impl<'data, 'file, Mach, R> RefUnwindSafe for MachOSection<'data, 'file, Mach, R>where
    R: RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    <Mach as MachHeader>::Section: RefUnwindSafe,
    Mach: RefUnwindSafe,
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Segment: RefUnwindSafe,
impl<'data, 'file, Mach, R> Send for MachOSection<'data, 'file, Mach, R>where
    R: Send + Sync,
    <Mach as MachHeader>::Endian: Sync,
    <Mach as MachHeader>::Section: Sync,
    Mach: Sync,
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Segment: Sync,
impl<'data, 'file, Mach, R> Sync for MachOSection<'data, 'file, Mach, R>where
    R: Sync,
    <Mach as MachHeader>::Endian: Sync,
    <Mach as MachHeader>::Section: Sync,
    Mach: Sync,
    <Mach as MachHeader>::Nlist: Sync,
    <Mach as MachHeader>::Segment: Sync,
impl<'data, 'file, Mach, R> Unpin for MachOSection<'data, 'file, Mach, R>where
    R: Unpin,
impl<'data, 'file, Mach, R> UnwindSafe for MachOSection<'data, 'file, Mach, R>where
    R: UnwindSafe + RefUnwindSafe,
    <Mach as MachHeader>::Endian: RefUnwindSafe,
    <Mach as MachHeader>::Section: RefUnwindSafe,
    Mach: RefUnwindSafe,
    <Mach as MachHeader>::Nlist: RefUnwindSafe,
    <Mach as MachHeader>::Segment: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more