pub struct Comdat<'data, 'file, R: ReadRef<'data> = &'data [u8]> { /* private fields */ }
Expand description
A COMDAT section group in a File
.
Most functionality is provided by the ObjectComdat
trait implementation.
Trait Implementations§
source§impl<'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>
source§type SectionIterator = ComdatSectionIterator<'data, 'file, R>
type SectionIterator = ComdatSectionIterator<'data, 'file, R>
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) -> ComdatSectionIterator<'data, 'file, R> ⓘ
fn sections(&self) -> ComdatSectionIterator<'data, 'file, R> ⓘ
Get the sections in this section group.
Auto Trait Implementations§
impl<'data, 'file, R> Freeze for Comdat<'data, 'file, R>
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>
impl<'data, 'file, R> UnwindSafe for Comdat<'data, 'file, R>where
R: 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