pub enum SmallUnsignedLabel {
USIZE,
U8,
U16,
U32,
U64,
U128,
}Expand description
Labels for unsigned integer primitives.
Variants§
USIZE
A label for usize types.
U8
A label for u8 types.
U16
A label for u16 types.
U32
A label for u32 types.
U64
A label for u64 types.
U128
A label for u128 types.
Implementations§
Trait Implementations§
Source§impl Clone for SmallUnsignedLabel
impl Clone for SmallUnsignedLabel
Source§fn clone(&self) -> SmallUnsignedLabel
fn clone(&self) -> SmallUnsignedLabel
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 SmallUnsignedLabel
impl Debug for SmallUnsignedLabel
Source§impl Ord for SmallUnsignedLabel
impl Ord for SmallUnsignedLabel
Source§fn cmp(&self, other: &SmallUnsignedLabel) -> Ordering
fn cmp(&self, other: &SmallUnsignedLabel) -> 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 SmallUnsignedLabel
impl PartialEq for SmallUnsignedLabel
Source§impl PartialOrd for SmallUnsignedLabel
impl PartialOrd for SmallUnsignedLabel
impl Copy for SmallUnsignedLabel
impl Eq for SmallUnsignedLabel
impl StructuralPartialEq for SmallUnsignedLabel
Auto Trait Implementations§
impl Freeze for SmallUnsignedLabel
impl RefUnwindSafe for SmallUnsignedLabel
impl Send for SmallUnsignedLabel
impl Sync for SmallUnsignedLabel
impl Unpin for SmallUnsignedLabel
impl UnwindSafe for SmallUnsignedLabel
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