pub enum SmallSignedLabel {
ISIZE,
I8,
I16,
I32,
I64,
I128,
}Expand description
Labels for signed integer primitives.
Variants§
ISIZE
A label for isize types.
I8
A label for i8 types.
I16
A label for i16 types.
I32
A label for i32 types.
I64
A label for i64 types.
I128
A label for i128 types.
Implementations§
Trait Implementations§
Source§impl Clone for SmallSignedLabel
impl Clone for SmallSignedLabel
Source§fn clone(&self) -> SmallSignedLabel
fn clone(&self) -> SmallSignedLabel
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 SmallSignedLabel
impl Debug for SmallSignedLabel
Source§impl Ord for SmallSignedLabel
impl Ord for SmallSignedLabel
Source§fn cmp(&self, other: &SmallSignedLabel) -> Ordering
fn cmp(&self, other: &SmallSignedLabel) -> 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 SmallSignedLabel
impl PartialEq for SmallSignedLabel
Source§impl PartialOrd for SmallSignedLabel
impl PartialOrd for SmallSignedLabel
impl Copy for SmallSignedLabel
impl Eq for SmallSignedLabel
impl StructuralPartialEq for SmallSignedLabel
Auto Trait Implementations§
impl Freeze for SmallSignedLabel
impl RefUnwindSafe for SmallSignedLabel
impl Send for SmallSignedLabel
impl Sync for SmallSignedLabel
impl Unpin for SmallSignedLabel
impl UnwindSafe for SmallSignedLabel
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