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