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