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