pub struct DerivedKeys {
pub auth_key: [u8; 32],
pub encryption_key: [u8; 32],
pub dedup_key: [u8; 32],
pub salt: [u8; 32],
}Expand description
Derived key material from a BIP-39 mnemonic.
Fields§
§auth_key: [u8; 32]§encryption_key: [u8; 32]§dedup_key: [u8; 32]§salt: [u8; 32]Trait Implementations§
Source§impl Clone for DerivedKeys
impl Clone for DerivedKeys
Source§fn clone(&self) -> DerivedKeys
fn clone(&self) -> DerivedKeys
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 moreAuto Trait Implementations§
impl Freeze for DerivedKeys
impl RefUnwindSafe for DerivedKeys
impl Send for DerivedKeys
impl Sync for DerivedKeys
impl Unpin for DerivedKeys
impl UnsafeUnpin for DerivedKeys
impl UnwindSafe for DerivedKeys
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