Enum object::ComdatKind
source · [−]#[non_exhaustive]
pub enum ComdatKind {
Unknown,
Any,
NoDuplicates,
SameSize,
ExactMatch,
Largest,
Newest,
}
Expand description
The selection kind for a COMDAT section group.
This determines the way in which the linker resolves multiple definitions of the COMDAT sections.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Unknown
The selection kind is unknown.
Any
Multiple definitions are allowed.
An arbitrary definition is selected, and the rest are removed.
This is the only supported selection kind for ELF.
NoDuplicates
Multiple definitions are not allowed.
This is used to group sections without allowing duplicates.
SameSize
Multiple definitions must have the same size.
An arbitrary definition is selected, and the rest are removed.
ExactMatch
Multiple definitions must match exactly.
An arbitrary definition is selected, and the rest are removed.
Largest
Multiple definitions are allowed, and the largest is selected.
An arbitrary definition with the largest size is selected, and the rest are removed.
Newest
Multiple definitions are allowed, and the newest is selected.
Trait Implementations
sourceimpl Clone for ComdatKind
impl Clone for ComdatKind
sourcefn clone(&self) -> ComdatKind
fn clone(&self) -> ComdatKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ComdatKind
impl Debug for ComdatKind
sourceimpl Hash for ComdatKind
impl Hash for ComdatKind
sourceimpl PartialEq<ComdatKind> for ComdatKind
impl PartialEq<ComdatKind> for ComdatKind
impl Copy for ComdatKind
impl Eq for ComdatKind
impl StructuralEq for ComdatKind
impl StructuralPartialEq for ComdatKind
Auto Trait Implementations
impl RefUnwindSafe for ComdatKind
impl Send for ComdatKind
impl Sync for ComdatKind
impl Unpin for ComdatKind
impl UnwindSafe for ComdatKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more