pub struct NonMaxU64(/* private fields */);
Expand description
An integer that is known not to equal its maximum value.
Implementations§
source§impl NonMaxU64
impl NonMaxU64
sourcepub const fn new(value: u64) -> Option<Self>
pub const fn new(value: u64) -> Option<Self>
Creates a new non-max if the given value is not the maximum value.
sourcepub const unsafe fn new_unchecked(value: u64) -> Self
pub const unsafe fn new_unchecked(value: u64) -> Self
Creates a new non-max without checking the value.
§Safety
The value must not equal the maximum representable value for the primitive type.
Trait Implementations§
source§impl BitAndAssign<NonMaxU64> for u64
impl BitAndAssign<NonMaxU64> for u64
source§fn bitand_assign(&mut self, rhs: NonMaxU64)
fn bitand_assign(&mut self, rhs: NonMaxU64)
Performs the
&=
operation. Read moresource§impl BitAndAssign<u64> for NonMaxU64
impl BitAndAssign<u64> for NonMaxU64
source§fn bitand_assign(&mut self, rhs: u64)
fn bitand_assign(&mut self, rhs: u64)
Performs the
&=
operation. Read moresource§impl BitAndAssign for NonMaxU64
impl BitAndAssign for NonMaxU64
source§fn bitand_assign(&mut self, rhs: NonMaxU64)
fn bitand_assign(&mut self, rhs: NonMaxU64)
Performs the
&=
operation. Read moresource§impl From<NonMaxU64> for NonMaxI128
impl From<NonMaxU64> for NonMaxI128
source§impl From<NonMaxU64> for NonMaxU128
impl From<NonMaxU64> for NonMaxU128
source§impl Ord for NonMaxU64
impl Ord for NonMaxU64
source§impl PartialEq for NonMaxU64
impl PartialEq for NonMaxU64
source§impl PartialOrd for NonMaxU64
impl PartialOrd for NonMaxU64
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 NonMaxU64
impl Eq for NonMaxU64
impl StructuralPartialEq for NonMaxU64
Auto Trait Implementations§
impl Freeze for NonMaxU64
impl RefUnwindSafe for NonMaxU64
impl Send for NonMaxU64
impl Sync for NonMaxU64
impl Unpin for NonMaxU64
impl UnwindSafe for NonMaxU64
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