object::read::macho

Type Alias MachOSection32

Source
pub type MachOSection32<'data, 'file, Endian = Endianness, R = &'data [u8]> = MachOSection<'data, 'file, MachHeader32<Endian>, R>;
Expand description

A section of a MachOFile32.

Aliased Type§

struct MachOSection32<'data, 'file, Endian = Endianness, R = &'data [u8]> { /* private fields */ }

Trait Implementations

Source§

impl<'data, 'file, Mach, R> Debug for MachOSection<'data, 'file, Mach, R>
where Mach: MachHeader + Debug, R: ReadRef<'data> + Debug, 'data: 'file,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

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>

An iterator over the relocations for a section. Read more
Source§

fn index(&self) -> SectionIndex

Returns the section index.
Source§

fn address(&self) -> u64

Returns the address of the section.
Source§

fn size(&self) -> u64

Returns the size of the section in memory.
Source§

fn align(&self) -> u64

Returns the alignment of the section in memory.
Source§

fn file_range(&self) -> Option<(u64, u64)>

Returns offset and size of on-disk segment (if any).
Source§

fn data(&self) -> Result<&'data [u8]>

Returns the raw contents of the section. Read more
Source§

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>

Returns the potentially compressed file range of the section, along with information about the compression.
Source§

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<&[u8]>

Returns the name of the section.
Source§

fn name(&self) -> Result<&str>

Returns the name of the section. Read more
Source§

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>>

Returns the name of the segment for this section. Read more
Source§

fn kind(&self) -> SectionKind

Return the kind of this section.
Source§

fn relocations(&self) -> MachORelocationIterator<'data, 'file, Mach, R>

Get the relocations for this section.
Source§

fn flags(&self) -> SectionFlags

Section flags that are specific to each file format.
Source§

fn uncompressed_data(&self) -> Result<Cow<'data, [u8]>>

Returns the uncompressed contents of the section. Read more