#[repr(C, packed(1))]pub struct __blake2b_param {
pub digest_length: byte,
pub key_length: byte,
pub fanout: byte,
pub depth: byte,
pub leaf_length: word32,
pub node_offset: word64,
pub node_depth: byte,
pub inner_length: byte,
pub reserved: [byte; 14],
pub salt: [byte; 16],
pub personal: [byte; 16],
}Fields§
§digest_length: byte§key_length: byte§fanout: byte§depth: byte§leaf_length: word32§node_offset: word64§node_depth: byte§inner_length: byte§reserved: [byte; 14]§salt: [byte; 16]§personal: [byte; 16]Trait Implementations§
Source§impl Clone for __blake2b_param
impl Clone for __blake2b_param
Source§fn clone(&self) -> __blake2b_param
fn clone(&self) -> __blake2b_param
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 __blake2b_param
impl Debug for __blake2b_param
impl Copy for __blake2b_param
Auto Trait Implementations§
impl Freeze for __blake2b_param
impl RefUnwindSafe for __blake2b_param
impl Send for __blake2b_param
impl Sync for __blake2b_param
impl Unpin for __blake2b_param
impl UnwindSafe for __blake2b_param
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