Struct sep2_common::packages::primitives::Uint64
source · pub struct Uint64(pub u64);
Expand description
Unsigned integer, max inclusive 18446744073709551615 (2^64-1)
Tuple Fields§
§0: u64
Methods from Deref<Target = u64>§
pub const MIN: u64 = 0u64
pub const MAX: u64 = 18_446_744_073_709_551_615u64
pub const BITS: u32 = 64u32
Trait Implementations§
source§impl Ord for Uint64
impl Ord for Uint64
source§impl PartialEq<Uint64> for Uint64
impl PartialEq<Uint64> for Uint64
source§impl PartialOrd<Uint64> for Uint64
impl PartialOrd<Uint64> for Uint64
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 moreimpl Copy for Uint64
impl Eq for Uint64
impl StructuralEq for Uint64
impl StructuralPartialEq for Uint64
Auto Trait Implementations§
impl RefUnwindSafe for Uint64
impl Send for Uint64
impl Sync for Uint64
impl Unpin for Uint64
impl UnwindSafe for Uint64
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