pub struct Comdat<'data, 'file, R: ReadRef<'data> = &'data [u8]>where
'data: 'file,{ /* private fields */ }
Expand description
A COMDAT section group of a File
.
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>
§type SectionIterator = ComdatSectionIterator<'data, 'file, R>
type SectionIterator = ComdatSectionIterator<'data, 'file, R>
An iterator over the sections in the object file.
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<&[u8]>
fn name_bytes(&self) -> Result<&[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> 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