#[repr(C, packed(1))]pub struct __blake2s_state {
pub h: [word32; 8],
pub t: [word32; 2],
pub f: [word32; 2],
pub buf: [byte; 128],
pub buflen: word32,
pub last_node: byte,
}Fields§
§h: [word32; 8]§t: [word32; 2]§f: [word32; 2]§buf: [byte; 128]§buflen: word32§last_node: byteTrait Implementations§
Source§impl Clone for __blake2s_state
impl Clone for __blake2s_state
Source§fn clone(&self) -> __blake2s_state
fn clone(&self) -> __blake2s_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 __blake2s_state
impl Debug for __blake2s_state
impl Copy for __blake2s_state
Auto Trait Implementations§
impl Freeze for __blake2s_state
impl RefUnwindSafe for __blake2s_state
impl Send for __blake2s_state
impl Sync for __blake2s_state
impl Unpin for __blake2s_state
impl UnwindSafe for __blake2s_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