Struct databend_common_ast::ast::PasswordUnSetOptions
source · pub struct PasswordUnSetOptions {
pub min_length: bool,
pub max_length: bool,
pub min_upper_case_chars: bool,
pub min_lower_case_chars: bool,
pub min_numeric_chars: bool,
pub min_special_chars: bool,
pub min_age_days: bool,
pub max_age_days: bool,
pub max_retries: bool,
pub lockout_time_mins: bool,
pub history: bool,
pub comment: bool,
}Fields§
§min_length: bool§max_length: bool§min_upper_case_chars: bool§min_lower_case_chars: bool§min_numeric_chars: bool§min_special_chars: bool§min_age_days: bool§max_age_days: bool§max_retries: bool§lockout_time_mins: bool§history: bool§comment: boolTrait Implementations§
source§impl Clone for PasswordUnSetOptions
impl Clone for PasswordUnSetOptions
source§fn clone(&self) -> PasswordUnSetOptions
fn clone(&self) -> PasswordUnSetOptions
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 PasswordUnSetOptions
impl Debug for PasswordUnSetOptions
source§impl Display for PasswordUnSetOptions
impl Display for PasswordUnSetOptions
source§impl DriveMut for PasswordUnSetOptions
impl DriveMut for PasswordUnSetOptions
fn drive_mut<V: VisitorMut>(&mut self, visitor: &mut V)
source§impl PartialEq for PasswordUnSetOptions
impl PartialEq for PasswordUnSetOptions
impl StructuralPartialEq for PasswordUnSetOptions
Auto Trait Implementations§
impl Freeze for PasswordUnSetOptions
impl RefUnwindSafe for PasswordUnSetOptions
impl Send for PasswordUnSetOptions
impl Sync for PasswordUnSetOptions
impl Unpin for PasswordUnSetOptions
impl UnwindSafe for PasswordUnSetOptions
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