object::read::macho::file

Type Alias MachOComdat32

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

A COMDAT section group in a MachOFile32.

Aliased Type§

struct MachOComdat32<'data, 'file, Endian = Endianness, R = &'data [u8]> {
    file: &'file MachOFile<'data, MachHeader32<Endian>, R>,
}

Fields§

§file: &'file MachOFile<'data, MachHeader32<Endian>, R>

Trait Implementations

Source§

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

Source§

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

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

impl<'data, 'file, Mach, R> ObjectComdat<'data> for MachOComdat<'data, 'file, Mach, R>
where Mach: MachHeader, R: ReadRef<'data>,

Source§

type SectionIterator = MachOComdatSectionIterator<'data, 'file, Mach, R>

An iterator for the sections in the section group.
Source§

fn kind(&self) -> ComdatKind

Returns the COMDAT selection kind.
Source§

fn symbol(&self) -> SymbolIndex

Returns the index of the symbol used for the name of COMDAT section group.
Source§

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

Returns the name of the COMDAT section group.
Source§

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

Returns the name of the COMDAT section group. Read more
Source§

fn sections(&self) -> Self::SectionIterator

Get the sections in this section group.
Source§

impl<'data, 'file, Mach, R> Sealed for MachOComdat<'data, 'file, Mach, R>
where Mach: MachHeader, R: ReadRef<'data>,