pub struct StoredKey {
pub iterations: usize,
pub salt: Vec<u8>,
pub stored_key: Sha256Out,
pub server_key: Sha256Out,
}Fields§
§iterations: usize§salt: Vec<u8>§stored_key: Sha256Out§server_key: Sha256OutImplementations§
Trait Implementations§
Source§impl ServerEnvironment for StoredKey
impl ServerEnvironment for StoredKey
impl Eq for StoredKey
Auto Trait Implementations§
impl Freeze for StoredKey
impl RefUnwindSafe for StoredKey
impl Send for StoredKey
impl Sync for StoredKey
impl Unpin for StoredKey
impl UnwindSafe for StoredKey
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