Enum object::ComdatKind [−][src]
#[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
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
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
Mutably borrows from an owned value. Read more