pub struct PasswordBreachDetection {
pub match_mode: Option<BreachMatchMode>,
pub notify_user_email_template_id: Option<Uuid>,
pub on_login: Option<BreachAction>,
pub enabled: Option<bool>,
}
Expand description
PasswordBreachDetection :
Fields§
§match_mode: Option<BreachMatchMode>
§notify_user_email_template_id: Option<Uuid>
§on_login: Option<BreachAction>
§enabled: Option<bool>
Implementations§
Source§impl PasswordBreachDetection
impl PasswordBreachDetection
Sourcepub fn new() -> PasswordBreachDetection
pub fn new() -> PasswordBreachDetection
Trait Implementations§
Source§impl Clone for PasswordBreachDetection
impl Clone for PasswordBreachDetection
Source§fn clone(&self) -> PasswordBreachDetection
fn clone(&self) -> PasswordBreachDetection
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 PasswordBreachDetection
impl Debug for PasswordBreachDetection
Source§impl Default for PasswordBreachDetection
impl Default for PasswordBreachDetection
Source§fn default() -> PasswordBreachDetection
fn default() -> PasswordBreachDetection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PasswordBreachDetection
impl<'de> Deserialize<'de> for PasswordBreachDetection
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 PasswordBreachDetection
impl PartialEq for PasswordBreachDetection
Source§impl Serialize for PasswordBreachDetection
impl Serialize for PasswordBreachDetection
impl StructuralPartialEq for PasswordBreachDetection
Auto Trait Implementations§
impl Freeze for PasswordBreachDetection
impl RefUnwindSafe for PasswordBreachDetection
impl Send for PasswordBreachDetection
impl Sync for PasswordBreachDetection
impl Unpin for PasswordBreachDetection
impl UnwindSafe for PasswordBreachDetection
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