Struct object::read::coff::CoffComdat
source · pub struct CoffComdat<'data, 'file, R: ReadRef<'data> = &'data [u8], Coff: CoffHeader = ImageFileHeader> { /* private fields */ }
Expand description
A COMDAT section group in a CoffFile
.
Most functionality is provided by the ObjectComdat
trait implementation.
Trait Implementations§
source§impl<'data, 'file, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffComdat<'data, 'file, R, Coff>where
Coff::ImageSymbol: Debug,
impl<'data, 'file, R: Debug + ReadRef<'data>, Coff: Debug + CoffHeader> Debug for CoffComdat<'data, 'file, R, Coff>where
Coff::ImageSymbol: Debug,
source§impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectComdat<'data> for CoffComdat<'data, 'file, R, Coff>
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> ObjectComdat<'data> for CoffComdat<'data, 'file, R, Coff>
source§type SectionIterator = CoffComdatSectionIterator<'data, 'file, R, Coff>
type SectionIterator = CoffComdatSectionIterator<'data, 'file, R, Coff>
An iterator for the sections in the section group.
source§fn kind(&self) -> ComdatKind
fn kind(&self) -> ComdatKind
Returns the COMDAT selection kind.
source§fn symbol(&self) -> SymbolIndex
fn symbol(&self) -> SymbolIndex
Returns the index of the symbol used for the name of COMDAT section group.
source§fn name_bytes(&self) -> Result<&'data [u8]>
fn name_bytes(&self) -> Result<&'data [u8]>
Returns the name of the COMDAT section group.
source§fn sections(&self) -> Self::SectionIterator
fn sections(&self) -> Self::SectionIterator
Get the sections in this section group.
Auto Trait Implementations§
impl<'data, 'file, R, Coff> Freeze for CoffComdat<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> RefUnwindSafe for CoffComdat<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: RefUnwindSafe,
R: RefUnwindSafe,
Coff: RefUnwindSafe,
<Coff as CoffHeader>::ImageSymbolBytes: RefUnwindSafe,
impl<'data, 'file, R, Coff> Send for CoffComdat<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: Sync,
R: Sync,
Coff: Sync,
<Coff as CoffHeader>::ImageSymbolBytes: Sync,
impl<'data, 'file, R, Coff> Sync for CoffComdat<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: Sync,
R: Sync,
Coff: Sync,
<Coff as CoffHeader>::ImageSymbolBytes: Sync,
impl<'data, 'file, R, Coff> Unpin for CoffComdat<'data, 'file, R, Coff>
impl<'data, 'file, R, Coff> UnwindSafe for CoffComdat<'data, 'file, R, Coff>where
<Coff as CoffHeader>::ImageSymbol: RefUnwindSafe,
R: RefUnwindSafe,
Coff: RefUnwindSafe,
<Coff as CoffHeader>::ImageSymbolBytes: 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