#[repr(C)]pub struct blake3_chunk_state {
pub cv: [u32; 8],
pub chunk_counter: u64,
pub buf: [u8; 64],
pub buf_len: u8,
pub blocks_compressed: u8,
pub flags: u8,
}Fields§
§cv: [u32; 8]§chunk_counter: u64§buf: [u8; 64]§buf_len: u8§blocks_compressed: u8§flags: u8Trait Implementations§
Source§impl Clone for blake3_chunk_state
impl Clone for blake3_chunk_state
Source§fn clone(&self) -> blake3_chunk_state
fn clone(&self) -> blake3_chunk_state
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 blake3_chunk_state
impl Debug for blake3_chunk_state
impl Copy for blake3_chunk_state
Auto Trait Implementations§
impl Freeze for blake3_chunk_state
impl RefUnwindSafe for blake3_chunk_state
impl Send for blake3_chunk_state
impl Sync for blake3_chunk_state
impl Unpin for blake3_chunk_state
impl UnwindSafe for blake3_chunk_state
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