pub struct VaultKey {
pub password: Password,
pub iterations: u32,
}Expand description
Vault key
Fields§
§password: PasswordVault password
iterations: u32Number of iterations to produce a derived key from password
Implementations§
Trait Implementations§
impl Eq for VaultKey
impl StructuralPartialEq for VaultKey
Auto Trait Implementations§
impl Freeze for VaultKey
impl RefUnwindSafe for VaultKey
impl Send for VaultKey
impl Sync for VaultKey
impl Unpin for VaultKey
impl UnwindSafe for VaultKey
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.