Enum object::read::any::SectionRelocationIteratorInternal
source · enum SectionRelocationIteratorInternal<'data, 'file, R: ReadRef<'data>> {
Coff(CoffRelocationIterator<'data, 'file, R>),
CoffBig(CoffBigRelocationIterator<'data, 'file, R>),
Elf32(ElfSectionRelocationIterator32<'data, 'file, Endianness, R>),
Elf64(ElfSectionRelocationIterator64<'data, 'file, Endianness, R>),
MachO32(MachORelocationIterator32<'data, 'file, Endianness, R>),
MachO64(MachORelocationIterator64<'data, 'file, Endianness, R>),
Pe32(PeRelocationIterator<'data, 'file, R>),
Pe64(PeRelocationIterator<'data, 'file, R>),
Xcoff32(XcoffRelocationIterator32<'data, 'file, R>),
Xcoff64(XcoffRelocationIterator64<'data, 'file, R>),
}
Variants§
Coff(CoffRelocationIterator<'data, 'file, R>)
CoffBig(CoffBigRelocationIterator<'data, 'file, R>)
Elf32(ElfSectionRelocationIterator32<'data, 'file, Endianness, R>)
Elf64(ElfSectionRelocationIterator64<'data, 'file, Endianness, R>)
MachO32(MachORelocationIterator32<'data, 'file, Endianness, R>)
MachO64(MachORelocationIterator64<'data, 'file, Endianness, R>)
Pe32(PeRelocationIterator<'data, 'file, R>)
Pe64(PeRelocationIterator<'data, 'file, R>)
Xcoff32(XcoffRelocationIterator32<'data, 'file, R>)
Xcoff64(XcoffRelocationIterator64<'data, 'file, R>)
Trait Implementations§
Auto Trait Implementations§
impl<'data, 'file, R> Freeze for SectionRelocationIteratorInternal<'data, 'file, R>
impl<'data, 'file, R> RefUnwindSafe for SectionRelocationIteratorInternal<'data, 'file, R>where
R: RefUnwindSafe,
impl<'data, 'file, R> Send for SectionRelocationIteratorInternal<'data, 'file, R>
impl<'data, 'file, R> Sync for SectionRelocationIteratorInternal<'data, 'file, R>where
R: Sync,
impl<'data, 'file, R> Unpin for SectionRelocationIteratorInternal<'data, 'file, R>where
R: Unpin,
impl<'data, 'file, R> UnwindSafe for SectionRelocationIteratorInternal<'data, 'file, R>where
R: RefUnwindSafe + UnwindSafe,
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