Struct databend_common_ast::ast::PasswordSetOptions
source · pub struct PasswordSetOptions {
pub min_length: Option<u64>,
pub max_length: Option<u64>,
pub min_upper_case_chars: Option<u64>,
pub min_lower_case_chars: Option<u64>,
pub min_numeric_chars: Option<u64>,
pub min_special_chars: Option<u64>,
pub min_age_days: Option<u64>,
pub max_age_days: Option<u64>,
pub max_retries: Option<u64>,
pub lockout_time_mins: Option<u64>,
pub history: Option<u64>,
pub comment: Option<String>,
}Fields§
§min_length: Option<u64>§max_length: Option<u64>§min_upper_case_chars: Option<u64>§min_lower_case_chars: Option<u64>§min_numeric_chars: Option<u64>§min_special_chars: Option<u64>§min_age_days: Option<u64>§max_age_days: Option<u64>§max_retries: Option<u64>§lockout_time_mins: Option<u64>§history: Option<u64>§comment: Option<String>Trait Implementations§
source§impl Clone for PasswordSetOptions
impl Clone for PasswordSetOptions
source§fn clone(&self) -> PasswordSetOptions
fn clone(&self) -> PasswordSetOptions
Returns a copy 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 PasswordSetOptions
impl Debug for PasswordSetOptions
source§impl Display for PasswordSetOptions
impl Display for PasswordSetOptions
source§impl DriveMut for PasswordSetOptions
impl DriveMut for PasswordSetOptions
fn drive_mut<V: VisitorMut>(&mut self, visitor: &mut V)
source§impl PartialEq for PasswordSetOptions
impl PartialEq for PasswordSetOptions
impl StructuralPartialEq for PasswordSetOptions
Auto Trait Implementations§
impl Freeze for PasswordSetOptions
impl RefUnwindSafe for PasswordSetOptions
impl Send for PasswordSetOptions
impl Sync for PasswordSetOptions
impl Unpin for PasswordSetOptions
impl UnwindSafe for PasswordSetOptions
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more