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