pub struct Comdat {
pub kind: ComdatKind,
pub symbol: SymbolId,
pub sections: Vec<SectionId>,
}
Expand description
A COMDAT section group.
Fields
kind: ComdatKind
The COMDAT selection kind.
This determines the way in which the linker resolves multiple definitions of the COMDAT sections.
symbol: SymbolId
The COMDAT symbol.
If this symbol is referenced, then all sections in the group will be included by the linker.
sections: Vec<SectionId>
The sections in the group.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Comdat
impl Send for Comdat
impl Sync for Comdat
impl Unpin for Comdat
impl UnwindSafe for Comdat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more