pub enum PasswordAlgorithmValue {
MD5,
SHA256,
}
Expand description
The hashing algorithm for the password
Variants§
Trait Implementations§
Source§impl Clone for PasswordAlgorithmValue
impl Clone for PasswordAlgorithmValue
Source§fn clone(&self) -> PasswordAlgorithmValue
fn clone(&self) -> PasswordAlgorithmValue
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 PasswordAlgorithmValue
impl Debug for PasswordAlgorithmValue
Source§impl Display for PasswordAlgorithmValue
impl Display for PasswordAlgorithmValue
Source§impl PartialEq for PasswordAlgorithmValue
impl PartialEq for PasswordAlgorithmValue
impl Copy for PasswordAlgorithmValue
impl Eq for PasswordAlgorithmValue
impl StructuralPartialEq for PasswordAlgorithmValue
Auto Trait Implementations§
impl Freeze for PasswordAlgorithmValue
impl RefUnwindSafe for PasswordAlgorithmValue
impl Send for PasswordAlgorithmValue
impl Sync for PasswordAlgorithmValue
impl Unpin for PasswordAlgorithmValue
impl UnwindSafe for PasswordAlgorithmValue
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