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