pub struct CoffComdat<'data, 'file, R: ReadRef<'data> = &'data [u8], Coff: CoffHeader = ImageFileHeader> {
file: &'file CoffFile<'data, R, Coff>,
symbol_index: SymbolIndex,
symbol: &'data Coff::ImageSymbol,
selection: u8,
}
Expand description
A COMDAT section group in a CoffFile
.
Most functionality is provided by the ObjectComdat
trait implementation.
Fields§
§file: &'file CoffFile<'data, R, Coff>
§symbol_index: SymbolIndex
§symbol: &'data Coff::ImageSymbol
§selection: u8
Implementations§
source§impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> CoffComdat<'data, 'file, R, Coff>
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> CoffComdat<'data, 'file, R, Coff>
fn parse( file: &'file CoffFile<'data, R, Coff>, section_symbol: &'data Coff::ImageSymbol, index: SymbolIndex, ) -> Option<CoffComdat<'data, 'file, R, Coff>>
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>
§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.
impl<'data, 'file, R: ReadRef<'data>, Coff: CoffHeader> Sealed for CoffComdat<'data, 'file, R, Coff>
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