pub struct Comdat<'data, 'file, R: ReadRef<'data> = &'data [u8]> where
'data: 'file, { /* private fields */ }
Expand description
A COMDAT section group of a File
.
Trait Implementations
sourceimpl<'data, 'file, R: ReadRef<'data>> ObjectComdat<'data> for Comdat<'data, 'file, R>
impl<'data, 'file, R: ReadRef<'data>> ObjectComdat<'data> for Comdat<'data, 'file, R>
type SectionIterator = ComdatSectionIterator<'data, 'file, R>
type SectionIterator = ComdatSectionIterator<'data, 'file, R>
An iterator over the sections in the object file.
sourcefn kind(&self) -> ComdatKind
fn kind(&self) -> ComdatKind
Returns the COMDAT selection kind.
sourcefn symbol(&self) -> SymbolIndex
fn symbol(&self) -> SymbolIndex
Returns the index of the symbol used for the name of COMDAT section group.
sourcefn sections(&self) -> ComdatSectionIterator<'data, 'file, R>ⓘNotable traits for ComdatSectionIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for ComdatSectionIterator<'data, 'file, R> type Item = SectionIndex;
fn sections(&self) -> ComdatSectionIterator<'data, 'file, R>ⓘNotable traits for ComdatSectionIterator<'data, 'file, R>impl<'data, 'file, R: ReadRef<'data>> Iterator for ComdatSectionIterator<'data, 'file, R> type Item = SectionIndex;
Get the sections in this section group.
Auto Trait Implementations
impl<'data, 'file, R> RefUnwindSafe for Comdat<'data, 'file, R> where
R: RefUnwindSafe,
impl<'data, 'file, R> Send for Comdat<'data, 'file, R> where
R: Sync,
impl<'data, 'file, R> Sync for Comdat<'data, 'file, R> where
R: Sync,
impl<'data, 'file, R> Unpin for Comdat<'data, 'file, R> where
'data: 'file,
impl<'data, 'file, R> UnwindSafe for Comdat<'data, 'file, R> where
R: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more