Enum object::read::any::SectionInternal
source · enum SectionInternal<'data, 'file, R: ReadRef<'data>> {
Coff(CoffSection<'data, 'file, R>),
CoffBig(CoffBigSection<'data, 'file, R>),
Elf32(ElfSection32<'data, 'file, Endianness, R>),
Elf64(ElfSection64<'data, 'file, Endianness, R>),
MachO32(MachOSection32<'data, 'file, Endianness, R>),
MachO64(MachOSection64<'data, 'file, Endianness, R>),
Pe32(PeSection32<'data, 'file, R>),
Pe64(PeSection64<'data, 'file, R>),
Xcoff32(XcoffSection32<'data, 'file, R>),
Xcoff64(XcoffSection64<'data, 'file, R>),
}
Variants§
Coff(CoffSection<'data, 'file, R>)
CoffBig(CoffBigSection<'data, 'file, R>)
Elf32(ElfSection32<'data, 'file, Endianness, R>)
Elf64(ElfSection64<'data, 'file, Endianness, R>)
MachO32(MachOSection32<'data, 'file, Endianness, R>)
MachO64(MachOSection64<'data, 'file, Endianness, R>)
Pe32(PeSection32<'data, 'file, R>)
Pe64(PeSection64<'data, 'file, R>)
Xcoff32(XcoffSection32<'data, 'file, R>)
Xcoff64(XcoffSection64<'data, 'file, R>)
Auto Trait Implementations§
impl<'data, 'file, R> Freeze for SectionInternal<'data, 'file, R>where
R: Freeze,
impl<'data, 'file, R> RefUnwindSafe for SectionInternal<'data, 'file, R>where
R: RefUnwindSafe,
impl<'data, 'file, R> Send for SectionInternal<'data, 'file, R>
impl<'data, 'file, R> Sync for SectionInternal<'data, 'file, R>where
R: Sync,
impl<'data, 'file, R> Unpin for SectionInternal<'data, 'file, R>where
R: Unpin,
impl<'data, 'file, R> UnwindSafe for SectionInternal<'data, 'file, R>where
R: UnwindSafe + 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