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