Enum object::ComdatKind [−][src]
The selection kind for a COMDAT section group.
This determines the way in which the linker resolves multiple definitions of the COMDAT sections.
Variants
The selection kind is unknown.
Multiple definitions are allowed.
An arbitrary definition is selected, and the rest are removed.
This is the only supported selection kind for ELF.
Multiple definitions are not allowed.
This is used to group sections without allowing duplicates.
Multiple definitions must have the same size.
An arbitrary definition is selected, and the rest are removed.
Multiple definitions must match exactly.
An arbitrary definition is selected, and the rest are removed.
Multiple definitions are allowed, and the largest is selected.
An arbitrary definition with the largest size is selected, and the rest are removed.
Multiple definitions are allowed, and the newest is selected.
Trait Implementations
impl Clone for ComdatKind
[src]
fn clone(&self) -> ComdatKind
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for ComdatKind
[src]
impl Debug for ComdatKind
[src]
impl Eq for ComdatKind
[src]
impl PartialEq<ComdatKind> for ComdatKind
[src]
fn eq(&self, other: &ComdatKind) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for ComdatKind
[src]
impl StructuralPartialEq for ComdatKind
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,