pub struct PasswordHistory {
pub last_used_date: String,
pub password: String,
}Fields§
§last_used_date: String§password: StringTrait Implementations§
Source§impl Clone for PasswordHistory
impl Clone for PasswordHistory
Source§fn clone(&self) -> PasswordHistory
fn clone(&self) -> PasswordHistory
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 moreSource§impl Debug for PasswordHistory
impl Debug for PasswordHistory
Source§impl Default for PasswordHistory
impl Default for PasswordHistory
Source§fn default() -> PasswordHistory
fn default() -> PasswordHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PasswordHistory
impl<'de> Deserialize<'de> for PasswordHistory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PasswordHistory
impl PartialEq for PasswordHistory
Source§impl Serialize for PasswordHistory
impl Serialize for PasswordHistory
impl StructuralPartialEq for PasswordHistory
Auto Trait Implementations§
impl Freeze for PasswordHistory
impl RefUnwindSafe for PasswordHistory
impl Send for PasswordHistory
impl Sync for PasswordHistory
impl Unpin for PasswordHistory
impl UnwindSafe for PasswordHistory
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