Enum ComdatSelection  
pub enum ComdatSelection {
    NONE,
    NODUPLICATES,
    ANY,
    SAME_SIZE,
    EXACT_MATCH,
    ASSOCIATIVE,
    LARGEST,
    UNKNOWN(u8),
}Variants§
Trait Implementations§
§impl Clone for ComdatSelection
 
impl Clone for ComdatSelection
§fn clone(&self) -> ComdatSelection
 
fn clone(&self) -> ComdatSelection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read more§impl Debug for ComdatSelection
 
impl Debug for ComdatSelection
§impl From<ComdatSelection> for u8
 
impl From<ComdatSelection> for u8
§fn from(value: ComdatSelection) -> u8
 
fn from(value: ComdatSelection) -> u8
Converts to this type from the input type.
§impl From<u8> for ComdatSelection
 
impl From<u8> for ComdatSelection
§impl Hash for ComdatSelection
 
impl Hash for ComdatSelection
§impl PartialEq for ComdatSelection
 
impl PartialEq for ComdatSelection
impl Copy for ComdatSelection
impl Eq for ComdatSelection
impl StructuralPartialEq for ComdatSelection
Auto Trait Implementations§
impl Freeze for ComdatSelection
impl RefUnwindSafe for ComdatSelection
impl Send for ComdatSelection
impl Sync for ComdatSelection
impl Unpin for ComdatSelection
impl UnwindSafe for ComdatSelection
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