Struct spl_pod::primitives::PodU32
source · #[repr(transparent)]pub struct PodU32(pub [u8; 4]);Expand description
u32 type that can be used in Pods
Tuple Fields§
§0: [u8; 4]Implementations§
Trait Implementations§
source§impl PartialEq for PodU32
impl PartialEq for PodU32
impl Copy for PodU32
impl Pod for PodU32
impl StructuralPartialEq for PodU32
Auto Trait Implementations§
impl Freeze for PodU32
impl RefUnwindSafe for PodU32
impl Send for PodU32
impl Sync for PodU32
impl Unpin for PodU32
impl UnwindSafe for PodU32
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
source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.