pub struct u83(_);
Expand description
The 83-bit unsigned integer type.
Implementations§
source§impl u83
impl u83
sourcepub const MIN: u83 = _
pub const MIN: u83 = _
The smallest value that can be represented by this integer type.
Examples
Basic usage:
assert_eq!(u83::MIN, u83::try_from(0u128).unwrap());
Trait Implementations§
source§impl Ord for u83
impl Ord for u83
source§impl PartialOrd<u83> for u83
impl PartialOrd<u83> for u83
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more