pub enum StrengthLevel {
VeryWeak,
Weak,
Fair,
Good,
Strong,
VeryStrong,
}Expand description
Password strength levels
Variants§
Trait Implementations§
Source§impl Clone for StrengthLevel
impl Clone for StrengthLevel
Source§fn clone(&self) -> StrengthLevel
fn clone(&self) -> StrengthLevel
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 StrengthLevel
impl Debug for StrengthLevel
Source§impl Display for StrengthLevel
impl Display for StrengthLevel
Source§impl PartialEq for StrengthLevel
impl PartialEq for StrengthLevel
impl StructuralPartialEq for StrengthLevel
Auto Trait Implementations§
impl Freeze for StrengthLevel
impl RefUnwindSafe for StrengthLevel
impl Send for StrengthLevel
impl Sync for StrengthLevel
impl Unpin for StrengthLevel
impl UnwindSafe for StrengthLevel
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