#[repr(C)]pub struct blake2s_state {
pub h: [ulong32; 8],
pub t: [ulong32; 2],
pub f: [ulong32; 2],
pub buf: [c_uchar; 64],
pub curlen: c_ulong,
pub outlen: c_ulong,
pub last_node: c_uchar,
}Fields§
§h: [ulong32; 8]§t: [ulong32; 2]§f: [ulong32; 2]§buf: [c_uchar; 64]§curlen: c_ulong§outlen: c_ulong§last_node: c_ucharTrait Implementations§
Source§impl Clone for blake2s_state
impl Clone 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