pub struct Packed24_8(/* private fields */);Expand description
Holds 24 bits in the least significant bits of memory,
and 8 bytes in the most significant bits of that memory,
occupying a single u32 in total.
Implementations§
Trait Implementations§
Source§impl Clone for Packed24_8
impl Clone for Packed24_8
Source§fn clone(&self) -> Packed24_8
fn clone(&self) -> Packed24_8
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Packed24_8
impl Debug for Packed24_8
Source§impl Default for Packed24_8
impl Default for Packed24_8
Source§fn default() -> Packed24_8
fn default() -> Packed24_8
Returns the “default value” for a type. Read more
Source§impl Ord for Packed24_8
impl Ord for Packed24_8
Source§fn cmp(&self, other: &Packed24_8) -> Ordering
fn cmp(&self, other: &Packed24_8) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Packed24_8
impl PartialEq for Packed24_8
Source§impl PartialOrd for Packed24_8
impl PartialOrd for Packed24_8
impl Copy for Packed24_8
impl Eq for Packed24_8
impl Pod for Packed24_8
impl StructuralPartialEq for Packed24_8
Auto Trait Implementations§
impl Freeze for Packed24_8
impl RefUnwindSafe for Packed24_8
impl Send for Packed24_8
impl Sync for Packed24_8
impl Unpin for Packed24_8
impl UnwindSafe for Packed24_8
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> BufferContents for T
impl<T> BufferContents for T
Source§const LAYOUT: BufferContentsLayout = const LAYOUT: BufferContentsLayout =
BufferContentsLayout::from_sized(Layout::new::<T>());
const LAYOUT: BufferContentsLayout = const LAYOUT: BufferContentsLayout = BufferContentsLayout::from_sized(Layout::new::<T>());
The layout of the contents.
unsafe fn ptr_from_slice(slice: NonNull<[u8]>) -> *mut T
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§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.