pub struct CoffComdat<'data, 'file> where
'data: 'file, { /* private fields */ }
Expand description
A COMDAT section group of a CoffFile
.
Trait Implementations
sourceimpl<'data, 'file> Debug for CoffComdat<'data, 'file> where
'data: 'file,
impl<'data, 'file> Debug for CoffComdat<'data, 'file> where
'data: 'file,
sourceimpl<'data, 'file> ObjectComdat<'data> for CoffComdat<'data, 'file>
impl<'data, 'file> ObjectComdat<'data> for CoffComdat<'data, 'file>
type SectionIterator = CoffComdatSectionIterator<'data, 'file>
type SectionIterator = CoffComdatSectionIterator<'data, 'file>
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) -> Self::SectionIterator
fn sections(&self) -> Self::SectionIterator
Get the sections in this section group.
Auto Trait Implementations
impl<'data, 'file> RefUnwindSafe for CoffComdat<'data, 'file>
impl<'data, 'file> Send for CoffComdat<'data, 'file>
impl<'data, 'file> Sync for CoffComdat<'data, 'file>
impl<'data, 'file> Unpin for CoffComdat<'data, 'file> where
'data: 'file,
impl<'data, 'file> UnwindSafe for CoffComdat<'data, 'file>
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