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_memory_cost: u32,
pub argon2_time_cost: u32,
pub argon2_parallelism: u32,
pub password_history: u32,
pub password_expiration: Duration,
}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_memory_cost: u32Argon2 memory cost (KiB)
argon2_time_cost: u32Argon2 time cost (iterations)
argon2_parallelism: u32Argon2 parallelism
password_history: u32Password history count
password_expiration: DurationPassword expiration (days, 0 = never)
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
Source§impl Default for PasswordConfig
impl Default for PasswordConfig
Source§impl<'de> Deserialize<'de> for PasswordConfig
impl<'de> Deserialize<'de> for PasswordConfig
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
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