pub struct IdentKey(/* private fields */);
Trait Implementations§
Source§impl Key for IdentKey
impl Key for IdentKey
Source§fn null() -> Self
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with
new_key_type!
, which calls this
method). Read moreSource§impl Ord for IdentKey
impl Ord for IdentKey
Source§impl PartialOrd for IdentKey
impl PartialOrd for IdentKey
impl Copy for IdentKey
impl Eq for IdentKey
impl StructuralPartialEq for IdentKey
Auto Trait Implementations§
impl Freeze for IdentKey
impl RefUnwindSafe for IdentKey
impl Send for IdentKey
impl Sync for IdentKey
impl Unpin for IdentKey
impl UnwindSafe for IdentKey
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