pub struct EncryptedPassword {
pub encrypted_password: String,
pub key_timestamp: u64,
}Expand description
Result of password encryption.
Fields§
§encrypted_password: String§key_timestamp: u64Trait Implementations§
Source§impl Clone for EncryptedPassword
impl Clone for EncryptedPassword
Source§fn clone(&self) -> EncryptedPassword
fn clone(&self) -> EncryptedPassword
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 EncryptedPassword
impl RefUnwindSafe for EncryptedPassword
impl Send for EncryptedPassword
impl Sync for EncryptedPassword
impl Unpin for EncryptedPassword
impl UnsafeUnpin for EncryptedPassword
impl UnwindSafe for EncryptedPassword
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