pub struct PasswordValidationRulesResponse {
pub password_validation_rules: Option<Box<PasswordValidationRules>>,
}
Expand description
PasswordValidationRulesResponse :
Fields§
§password_validation_rules: Option<Box<PasswordValidationRules>>
Implementations§
Trait Implementations§
Source§impl Clone for PasswordValidationRulesResponse
impl Clone for PasswordValidationRulesResponse
Source§fn clone(&self) -> PasswordValidationRulesResponse
fn clone(&self) -> PasswordValidationRulesResponse
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 Default for PasswordValidationRulesResponse
impl Default for PasswordValidationRulesResponse
Source§fn default() -> PasswordValidationRulesResponse
fn default() -> PasswordValidationRulesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PasswordValidationRulesResponse
impl<'de> Deserialize<'de> for PasswordValidationRulesResponse
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
Source§impl PartialEq for PasswordValidationRulesResponse
impl PartialEq for PasswordValidationRulesResponse
Source§fn eq(&self, other: &PasswordValidationRulesResponse) -> bool
fn eq(&self, other: &PasswordValidationRulesResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PasswordValidationRulesResponse
Auto Trait Implementations§
impl Freeze for PasswordValidationRulesResponse
impl RefUnwindSafe for PasswordValidationRulesResponse
impl Send for PasswordValidationRulesResponse
impl Sync for PasswordValidationRulesResponse
impl Unpin for PasswordValidationRulesResponse
impl UnwindSafe for PasswordValidationRulesResponse
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