pub struct NonZeroU64_be(/* private fields */);Expand description
A big-endian NonZeroU64 with a guaranteed size and alignment of 8.
Implementations§
Source§impl NonZeroU64_be
impl NonZeroU64_be
Sourcepub const fn new(value: u64) -> Option<Self>
pub const fn new(value: u64) -> Option<Self>
Creates a non-zero if the given value is not zero.
Sourcepub const unsafe fn new_unchecked(value: u64) -> Self
pub const unsafe fn new_unchecked(value: u64) -> Self
Creates a non-zero without checking whether it is non-zero. This results in undefined behavior if the value is zero.
§Safety
The value must not be zero.
Sourcepub const fn from_native(value: NonZeroU64) -> Self
pub const fn from_native(value: NonZeroU64) -> Self
Returns a NonZeroU64_be containing value.
Sourcepub const fn to_native(self) -> NonZeroU64
pub const fn to_native(self) -> NonZeroU64
Returns a NonZeroU64 with the same value as self.
Trait Implementations§
Source§impl Binary for NonZeroU64_be
impl Binary for NonZeroU64_be
Source§impl BitOr<&NonZeroU64_be> for &NonZeroU64_be
impl BitOr<&NonZeroU64_be> for &NonZeroU64_be
Source§impl BitOr<&NonZeroU64_be> for NonZeroU64
impl BitOr<&NonZeroU64_be> for NonZeroU64
Source§impl BitOr<&NonZeroU64_be> for NonZeroU64_be
impl BitOr<&NonZeroU64_be> for NonZeroU64_be
Source§impl BitOr<NonZeroU64_be> for &NonZeroU64_be
impl BitOr<NonZeroU64_be> for &NonZeroU64_be
Source§impl BitOr<NonZeroU64_be> for NonZeroU64
impl BitOr<NonZeroU64_be> for NonZeroU64
Source§impl BitOr for NonZeroU64_be
impl BitOr for NonZeroU64_be
Source§impl BitOrAssign<NonZero<u64>> for NonZeroU64_be
impl BitOrAssign<NonZero<u64>> for NonZeroU64_be
Source§fn bitor_assign(&mut self, other: NonZeroU64)
fn bitor_assign(&mut self, other: NonZeroU64)
Performs the
|= operation. Read moreSource§impl BitOrAssign for NonZeroU64_be
impl BitOrAssign for NonZeroU64_be
Source§fn bitor_assign(&mut self, other: NonZeroU64_be)
fn bitor_assign(&mut self, other: NonZeroU64_be)
Performs the
|= operation. Read moreSource§impl<C> CheckBytes<C> for NonZeroU64_be
Available on crate feature bytecheck only.
impl<C> CheckBytes<C> for NonZeroU64_be
Available on crate feature
bytecheck only.Source§impl Clone for NonZeroU64_be
impl Clone for NonZeroU64_be
Source§impl Debug for NonZeroU64_be
impl Debug for NonZeroU64_be
Source§impl Display for NonZeroU64_be
impl Display for NonZeroU64_be
Source§impl<'a> From<&'a NonZero<u64>> for NonZeroU64_be
impl<'a> From<&'a NonZero<u64>> for NonZeroU64_be
Source§fn from(value: &'a NonZeroU64) -> Self
fn from(value: &'a NonZeroU64) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a NonZeroU64_be> for NonZeroU64
impl<'a> From<&'a NonZeroU64_be> for NonZeroU64
Source§fn from(value: &'a NonZeroU64_be) -> Self
fn from(value: &'a NonZeroU64_be) -> Self
Converts to this type from the input type.
Source§impl From<NonZero<u64>> for NonZeroU64_be
impl From<NonZero<u64>> for NonZeroU64_be
Source§fn from(value: NonZeroU64) -> Self
fn from(value: NonZeroU64) -> Self
Converts to this type from the input type.
Source§impl From<NonZeroU64_be> for NonZeroU64
impl From<NonZeroU64_be> for NonZeroU64
Source§fn from(value: NonZeroU64_be) -> Self
fn from(value: NonZeroU64_be) -> Self
Converts to this type from the input type.
Source§impl Hash for NonZeroU64_be
impl Hash for NonZeroU64_be
Source§impl LowerHex for NonZeroU64_be
impl LowerHex for NonZeroU64_be
Source§impl Octal for NonZeroU64_be
impl Octal for NonZeroU64_be
Source§impl Ord for NonZeroU64_be
impl Ord for NonZeroU64_be
Source§impl PartialEq<NonZeroU64_be> for NonZeroU64
impl PartialEq<NonZeroU64_be> for NonZeroU64
Source§impl PartialEq for NonZeroU64_be
impl PartialEq for NonZeroU64_be
Source§impl PartialOrd<NonZero<u64>> for NonZeroU64_be
impl PartialOrd<NonZero<u64>> for NonZeroU64_be
Source§impl PartialOrd for NonZeroU64_be
impl PartialOrd for NonZeroU64_be
Source§impl UpperHex for NonZeroU64_be
impl UpperHex for NonZeroU64_be
impl Copy for NonZeroU64_be
impl Eq for NonZeroU64_be
Auto Trait Implementations§
impl Freeze for NonZeroU64_be
impl RefUnwindSafe for NonZeroU64_be
impl Send for NonZeroU64_be
impl Sync for NonZeroU64_be
impl Unpin for NonZeroU64_be
impl UnsafeUnpin for NonZeroU64_be
impl UnwindSafe for NonZeroU64_be
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