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