pub struct ComplexTypeKey(/* private fields */);Expand description
Complex type definition key
Trait Implementations§
Source§impl Clone for ComplexTypeKey
impl Clone for ComplexTypeKey
Source§fn clone(&self) -> ComplexTypeKey
fn clone(&self) -> ComplexTypeKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ComplexTypeKey
Source§impl Debug for ComplexTypeKey
impl Debug for ComplexTypeKey
Source§impl Default for ComplexTypeKey
impl Default for ComplexTypeKey
Source§fn default() -> ComplexTypeKey
fn default() -> ComplexTypeKey
Returns the “default value” for a type. Read more
impl Eq for ComplexTypeKey
Source§impl From<ComplexTypeKey> for TypeKey
impl From<ComplexTypeKey> for TypeKey
Source§fn from(key: ComplexTypeKey) -> Self
fn from(key: ComplexTypeKey) -> Self
Converts to this type from the input type.
Source§impl From<KeyData> for ComplexTypeKey
impl From<KeyData> for ComplexTypeKey
Source§impl Hash for ComplexTypeKey
impl Hash for ComplexTypeKey
Source§impl Key for ComplexTypeKey
impl Key for ComplexTypeKey
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 ComplexTypeKey
impl Ord for ComplexTypeKey
Source§fn cmp(&self, other: &ComplexTypeKey) -> Ordering
fn cmp(&self, other: &ComplexTypeKey) -> Ordering
1.21.0 (const: unstable) · 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 ComplexTypeKey
impl PartialEq for ComplexTypeKey
Source§fn eq(&self, other: &ComplexTypeKey) -> bool
fn eq(&self, other: &ComplexTypeKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ComplexTypeKey
impl PartialOrd for ComplexTypeKey
impl StructuralPartialEq for ComplexTypeKey
Auto Trait Implementations§
impl Freeze for ComplexTypeKey
impl RefUnwindSafe for ComplexTypeKey
impl Send for ComplexTypeKey
impl Sync for ComplexTypeKey
impl Unpin for ComplexTypeKey
impl UnsafeUnpin for ComplexTypeKey
impl UnwindSafe for ComplexTypeKey
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