pub struct PasswordConfig {
pub min_length: usize,
pub require_uppercase: bool,
pub require_lowercase: bool,
pub require_numbers: bool,
pub require_special: bool,
pub argon2_config: Argon2Config,
}Expand description
Password hashing configuration
Fields§
§min_length: usizeMinimum password length
require_uppercase: boolRequire uppercase letters
require_lowercase: boolRequire lowercase letters
require_numbers: boolRequire numbers
require_special: boolRequire special characters
argon2_config: Argon2ConfigArgon2 configuration
Trait Implementations§
Source§impl Clone for PasswordConfig
impl Clone for PasswordConfig
Source§fn clone(&self) -> PasswordConfig
fn clone(&self) -> PasswordConfig
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 PasswordConfig
impl Debug for PasswordConfig
Auto Trait Implementations§
impl Freeze for PasswordConfig
impl RefUnwindSafe for PasswordConfig
impl Send for PasswordConfig
impl Sync for PasswordConfig
impl Unpin for PasswordConfig
impl UnwindSafe for PasswordConfig
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