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 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 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
impl StructuralPartialEq for TenantCaptchaConfiguration
Auto Trait Implementations§
impl Freeze for TenantCaptchaConfiguration
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