pub enum Password {
Plain(String),
Pbkdf2 {
method: String,
salt: Vec<u8>,
iterations: u32,
data: Vec<u8>,
},
}
Expand description
Represents a password.
Variants§
Trait Implementations§
source§impl PartialEq for Password
impl PartialEq for Password
impl Eq for Password
impl StructuralPartialEq for Password
Auto Trait Implementations§
impl Freeze for Password
impl RefUnwindSafe for Password
impl Send for Password
impl Sync for Password
impl Unpin for Password
impl UnwindSafe for Password
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