Type Alias object::read::macho::MachOSection64
source · pub type MachOSection64<'data, 'file, Endian = Endianness, R = &'data [u8]> = MachOSection<'data, 'file, MachHeader64<Endian>, R>;
Expand description
A section in a MachOFile64
.
Aliased Type§
struct MachOSection64<'data, 'file, Endian = Endianness, R = &'data [u8]> { /* private fields */ }
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.
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>,
§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.