pub struct AttributeGroupKey(/* private fields */);Expand description
Attribute group key
Trait Implementations§
Source§impl Clone for AttributeGroupKey
impl Clone for AttributeGroupKey
Source§fn clone(&self) -> AttributeGroupKey
fn clone(&self) -> AttributeGroupKey
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 AttributeGroupKey
Source§impl Debug for AttributeGroupKey
impl Debug for AttributeGroupKey
Source§impl Default for AttributeGroupKey
impl Default for AttributeGroupKey
Source§fn default() -> AttributeGroupKey
fn default() -> AttributeGroupKey
Returns the “default value” for a type. Read more
impl Eq for AttributeGroupKey
Source§impl From<KeyData> for AttributeGroupKey
impl From<KeyData> for AttributeGroupKey
Source§impl Hash for AttributeGroupKey
impl Hash for AttributeGroupKey
Source§impl Key for AttributeGroupKey
impl Key for AttributeGroupKey
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 AttributeGroupKey
impl Ord for AttributeGroupKey
Source§fn cmp(&self, other: &AttributeGroupKey) -> Ordering
fn cmp(&self, other: &AttributeGroupKey) -> 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 AttributeGroupKey
impl PartialEq for AttributeGroupKey
Source§fn eq(&self, other: &AttributeGroupKey) -> bool
fn eq(&self, other: &AttributeGroupKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AttributeGroupKey
impl PartialOrd for AttributeGroupKey
impl StructuralPartialEq for AttributeGroupKey
Auto Trait Implementations§
impl Freeze for AttributeGroupKey
impl RefUnwindSafe for AttributeGroupKey
impl Send for AttributeGroupKey
impl Sync for AttributeGroupKey
impl Unpin for AttributeGroupKey
impl UnsafeUnpin for AttributeGroupKey
impl UnwindSafe for AttributeGroupKey
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