pub struct TenantRateLimitConfiguration {
pub failed_login: Option<Box<RateLimitedRequestConfiguration>>,
pub forgot_password: Option<Box<RateLimitedRequestConfiguration>>,
pub send_email_verification: Option<Box<RateLimitedRequestConfiguration>>,
pub send_passwordless: Option<Box<RateLimitedRequestConfiguration>>,
pub send_registration_verification: Option<Box<RateLimitedRequestConfiguration>>,
pub send_two_factor: Option<Box<RateLimitedRequestConfiguration>>,
}
Expand description
TenantRateLimitConfiguration :
Fields§
§failed_login: Option<Box<RateLimitedRequestConfiguration>>
§forgot_password: Option<Box<RateLimitedRequestConfiguration>>
§send_email_verification: Option<Box<RateLimitedRequestConfiguration>>
§send_passwordless: Option<Box<RateLimitedRequestConfiguration>>
§send_registration_verification: Option<Box<RateLimitedRequestConfiguration>>
§send_two_factor: Option<Box<RateLimitedRequestConfiguration>>
Implementations§
Source§impl TenantRateLimitConfiguration
impl TenantRateLimitConfiguration
Sourcepub fn new() -> TenantRateLimitConfiguration
pub fn new() -> TenantRateLimitConfiguration
Trait Implementations§
Source§impl Clone for TenantRateLimitConfiguration
impl Clone for TenantRateLimitConfiguration
Source§fn clone(&self) -> TenantRateLimitConfiguration
fn clone(&self) -> TenantRateLimitConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TenantRateLimitConfiguration
impl Debug for TenantRateLimitConfiguration
Source§impl Default for TenantRateLimitConfiguration
impl Default for TenantRateLimitConfiguration
Source§fn default() -> TenantRateLimitConfiguration
fn default() -> TenantRateLimitConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TenantRateLimitConfiguration
impl<'de> Deserialize<'de> for TenantRateLimitConfiguration
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 TenantRateLimitConfiguration
impl PartialEq for TenantRateLimitConfiguration
Source§fn eq(&self, other: &TenantRateLimitConfiguration) -> bool
fn eq(&self, other: &TenantRateLimitConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TenantRateLimitConfiguration
Auto Trait Implementations§
impl Freeze for TenantRateLimitConfiguration
impl RefUnwindSafe for TenantRateLimitConfiguration
impl Send for TenantRateLimitConfiguration
impl Sync for TenantRateLimitConfiguration
impl Unpin for TenantRateLimitConfiguration
impl UnwindSafe for TenantRateLimitConfiguration
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