Struct fusionauth_rust_client::models::tenant_captcha_configuration::TenantCaptchaConfiguration
source · pub struct TenantCaptchaConfiguration {
pub captcha_method: Option<CaptchaMethod>,
pub secret_key: Option<String>,
pub site_key: Option<String>,
pub threshold: Option<f64>,
pub enabled: Option<bool>,
}
Expand description
TenantCaptchaConfiguration :
Fields§
§captcha_method: Option<CaptchaMethod>
§secret_key: Option<String>
§site_key: Option<String>
§threshold: Option<f64>
§enabled: Option<bool>
Implementations§
source§impl TenantCaptchaConfiguration
impl TenantCaptchaConfiguration
sourcepub fn new() -> TenantCaptchaConfiguration
pub fn new() -> TenantCaptchaConfiguration
Trait Implementations§
source§impl Clone for TenantCaptchaConfiguration
impl Clone for TenantCaptchaConfiguration
source§fn clone(&self) -> TenantCaptchaConfiguration
fn clone(&self) -> TenantCaptchaConfiguration
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 TenantCaptchaConfiguration
impl Debug for TenantCaptchaConfiguration
source§impl Default for TenantCaptchaConfiguration
impl Default for TenantCaptchaConfiguration
source§fn default() -> TenantCaptchaConfiguration
fn default() -> TenantCaptchaConfiguration
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TenantCaptchaConfiguration
impl<'de> Deserialize<'de> for TenantCaptchaConfiguration
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 TenantCaptchaConfiguration
impl PartialEq for TenantCaptchaConfiguration
source§fn eq(&self, other: &TenantCaptchaConfiguration) -> bool
fn eq(&self, other: &TenantCaptchaConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TenantCaptchaConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for TenantCaptchaConfiguration
impl Send for TenantCaptchaConfiguration
impl Sync for TenantCaptchaConfiguration
impl Unpin for TenantCaptchaConfiguration
impl UnwindSafe for TenantCaptchaConfiguration
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