pub struct EncryptedPassword {
pub session_key: String,
pub speedy_key: Option<String>,
pub password: String,
pub combo_key: Vec<u8>,
}Fields§
§session_key: String§speedy_key: Option<String>§password: String§combo_key: Vec<u8>Trait 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 (const: unstable) · 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 EncryptedPassword
impl Debug for EncryptedPassword
impl Eq for EncryptedPassword
Source§impl PartialEq for EncryptedPassword
impl PartialEq for EncryptedPassword
Source§fn eq(&self, other: &EncryptedPassword) -> bool
fn eq(&self, other: &EncryptedPassword) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EncryptedPassword
Auto 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