pub struct u63(_);
Expand description
The 63-bit unsigned integer type.
Implementations§
source§impl u63
impl u63
sourcepub const MIN: u63 = _
pub const MIN: u63 = _
The smallest value that can be represented by this integer type.
Examples
Basic usage:
assert_eq!(u63::MIN, u63::try_from(0u64).unwrap());
Trait Implementations§
source§impl Ord for u63
impl Ord for u63
source§impl PartialOrd<u63> for u63
impl PartialOrd<u63> for u63
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