pub struct FuncDeclKey(/* private fields */);
Trait Implementations§
Source§impl Clone for FuncDeclKey
impl Clone for FuncDeclKey
Source§fn clone(&self) -> FuncDeclKey
fn clone(&self) -> FuncDeclKey
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 moreSource§impl Debug for FuncDeclKey
impl Debug for FuncDeclKey
Source§impl Default for FuncDeclKey
impl Default for FuncDeclKey
Source§fn default() -> FuncDeclKey
fn default() -> FuncDeclKey
Returns the “default value” for a type. Read more
Source§impl From<FuncDeclKey> for KeyData
impl From<FuncDeclKey> for KeyData
Source§fn from(k: FuncDeclKey) -> Self
fn from(k: FuncDeclKey) -> Self
Converts to this type from the input type.
Source§impl From<KeyData> for FuncDeclKey
impl From<KeyData> for FuncDeclKey
Source§impl Hash for FuncDeclKey
impl Hash for FuncDeclKey
Source§impl Key for FuncDeclKey
impl Key for FuncDeclKey
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 FuncDeclKey
impl Ord for FuncDeclKey
Source§fn cmp(&self, other: &FuncDeclKey) -> Ordering
fn cmp(&self, other: &FuncDeclKey) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FuncDeclKey
impl PartialEq for FuncDeclKey
Source§impl PartialOrd for FuncDeclKey
impl PartialOrd for FuncDeclKey
impl Copy for FuncDeclKey
impl Eq for FuncDeclKey
impl StructuralPartialEq for FuncDeclKey
Auto Trait Implementations§
impl Freeze for FuncDeclKey
impl RefUnwindSafe for FuncDeclKey
impl Send for FuncDeclKey
impl Sync for FuncDeclKey
impl Unpin for FuncDeclKey
impl UnwindSafe for FuncDeclKey
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