Struct fusionauth_rust_client::models::tenant_web_authn_configuration::TenantWebAuthnConfiguration
source · pub struct TenantWebAuthnConfiguration {
pub bootstrap_workflow: Option<Box<TenantWebAuthnWorkflowConfiguration>>,
pub debug: Option<bool>,
pub reauthentication_workflow: Option<Box<TenantWebAuthnWorkflowConfiguration>>,
pub relying_party_id: Option<String>,
pub relying_party_name: Option<String>,
pub enabled: Option<bool>,
}
Expand description
TenantWebAuthnConfiguration : Tenant-level configuration for WebAuthn
Fields§
§bootstrap_workflow: Option<Box<TenantWebAuthnWorkflowConfiguration>>
§debug: Option<bool>
§reauthentication_workflow: Option<Box<TenantWebAuthnWorkflowConfiguration>>
§relying_party_id: Option<String>
§relying_party_name: Option<String>
§enabled: Option<bool>
Implementations§
source§impl TenantWebAuthnConfiguration
impl TenantWebAuthnConfiguration
sourcepub fn new() -> TenantWebAuthnConfiguration
pub fn new() -> TenantWebAuthnConfiguration
Tenant-level configuration for WebAuthn
Trait Implementations§
source§impl Clone for TenantWebAuthnConfiguration
impl Clone for TenantWebAuthnConfiguration
source§fn clone(&self) -> TenantWebAuthnConfiguration
fn clone(&self) -> TenantWebAuthnConfiguration
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 TenantWebAuthnConfiguration
impl Debug for TenantWebAuthnConfiguration
source§impl Default for TenantWebAuthnConfiguration
impl Default for TenantWebAuthnConfiguration
source§fn default() -> TenantWebAuthnConfiguration
fn default() -> TenantWebAuthnConfiguration
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TenantWebAuthnConfiguration
impl<'de> Deserialize<'de> for TenantWebAuthnConfiguration
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 TenantWebAuthnConfiguration
impl PartialEq for TenantWebAuthnConfiguration
source§fn eq(&self, other: &TenantWebAuthnConfiguration) -> bool
fn eq(&self, other: &TenantWebAuthnConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TenantWebAuthnConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for TenantWebAuthnConfiguration
impl Send for TenantWebAuthnConfiguration
impl Sync for TenantWebAuthnConfiguration
impl Unpin for TenantWebAuthnConfiguration
impl UnwindSafe for TenantWebAuthnConfiguration
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