pub struct Comdat<'data, 'file> where
    'data: 'file,  { /* private fields */ }Expand description
A COMDAT section group of a File.
Trait Implementations
sourceimpl<'data, 'file> ObjectComdat<'data> for Comdat<'data, 'file>
 
impl<'data, 'file> ObjectComdat<'data> for Comdat<'data, 'file>
type SectionIterator = ComdatSectionIterator<'data, 'file>
type SectionIterator = ComdatSectionIterator<'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) -> ComdatSectionIterator<'data, 'file>ⓘNotable traits for ComdatSectionIterator<'data, 'file>impl<'data, 'file> Iterator for ComdatSectionIterator<'data, 'file>    type Item = SectionIndex;
 
fn sections(&self) -> ComdatSectionIterator<'data, 'file>ⓘNotable traits for ComdatSectionIterator<'data, 'file>impl<'data, 'file> Iterator for ComdatSectionIterator<'data, 'file>    type Item = SectionIndex;
Get the sections in this section group.
Auto Trait Implementations
impl<'data, 'file> RefUnwindSafe for Comdat<'data, 'file>
impl<'data, 'file> Send for Comdat<'data, 'file>
impl<'data, 'file> Sync for Comdat<'data, 'file>
impl<'data, 'file> Unpin for Comdat<'data, 'file> where
    'data: 'file, 
impl<'data, 'file> UnwindSafe for Comdat<'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