pub struct ApplicationWebAuthnConfiguration {
pub bootstrap_workflow: Option<Box<ApplicationWebAuthnWorkflowConfiguration>>,
pub reauthentication_workflow: Option<Box<ApplicationWebAuthnWorkflowConfiguration>>,
pub enabled: Option<bool>,
}
Expand description
ApplicationWebAuthnConfiguration : Application-level configuration for WebAuthn
Fields§
§bootstrap_workflow: Option<Box<ApplicationWebAuthnWorkflowConfiguration>>
§reauthentication_workflow: Option<Box<ApplicationWebAuthnWorkflowConfiguration>>
§enabled: Option<bool>
Implementations§
Source§impl ApplicationWebAuthnConfiguration
impl ApplicationWebAuthnConfiguration
Sourcepub fn new() -> ApplicationWebAuthnConfiguration
pub fn new() -> ApplicationWebAuthnConfiguration
Application-level configuration for WebAuthn
Trait Implementations§
Source§impl Clone for ApplicationWebAuthnConfiguration
impl Clone for ApplicationWebAuthnConfiguration
Source§fn clone(&self) -> ApplicationWebAuthnConfiguration
fn clone(&self) -> ApplicationWebAuthnConfiguration
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 Default for ApplicationWebAuthnConfiguration
impl Default for ApplicationWebAuthnConfiguration
Source§fn default() -> ApplicationWebAuthnConfiguration
fn default() -> ApplicationWebAuthnConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationWebAuthnConfiguration
impl<'de> Deserialize<'de> for ApplicationWebAuthnConfiguration
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 ApplicationWebAuthnConfiguration
impl PartialEq for ApplicationWebAuthnConfiguration
Source§fn eq(&self, other: &ApplicationWebAuthnConfiguration) -> bool
fn eq(&self, other: &ApplicationWebAuthnConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApplicationWebAuthnConfiguration
Auto Trait Implementations§
impl Freeze for ApplicationWebAuthnConfiguration
impl RefUnwindSafe for ApplicationWebAuthnConfiguration
impl Send for ApplicationWebAuthnConfiguration
impl Sync for ApplicationWebAuthnConfiguration
impl Unpin for ApplicationWebAuthnConfiguration
impl UnwindSafe for ApplicationWebAuthnConfiguration
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