#[repr(C)]pub(crate) struct Block {
subblocks: [u64; 2],
}Expand description
An array of 16 bytes that can (in the x86_64 and AAarch64 ABIs, at least)
be efficiently passed by value and returned by value (i.e. in registers),
and which meets the alignment requirements of u32 and u64 (at least)
for the target.
Fields§
§subblocks: [u64; 2]Implementations§
Trait Implementations§
impl Copy for Block
Auto Trait Implementations§
impl Freeze for Block
impl RefUnwindSafe for Block
impl Send for Block
impl Sync for Block
impl Unpin for Block
impl UnwindSafe for Block
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