pub struct WebAuthnRegisterStartRequest {
pub display_name: Option<String>,
pub name: Option<String>,
pub user_agent: Option<String>,
pub user_id: Option<Uuid>,
pub workflow: Option<WebAuthnWorkflow>,
}Expand description
WebAuthnRegisterStartRequest : API request to start a WebAuthn registration ceremony
Fields§
§display_name: Option<String>§name: Option<String>§user_agent: Option<String>§user_id: Option<Uuid>§workflow: Option<WebAuthnWorkflow>Implementations§
Source§impl WebAuthnRegisterStartRequest
impl WebAuthnRegisterStartRequest
Sourcepub fn new() -> WebAuthnRegisterStartRequest
pub fn new() -> WebAuthnRegisterStartRequest
API request to start a WebAuthn registration ceremony
Trait Implementations§
Source§impl Clone for WebAuthnRegisterStartRequest
impl Clone for WebAuthnRegisterStartRequest
Source§fn clone(&self) -> WebAuthnRegisterStartRequest
fn clone(&self) -> WebAuthnRegisterStartRequest
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 WebAuthnRegisterStartRequest
impl Debug for WebAuthnRegisterStartRequest
Source§impl Default for WebAuthnRegisterStartRequest
impl Default for WebAuthnRegisterStartRequest
Source§fn default() -> WebAuthnRegisterStartRequest
fn default() -> WebAuthnRegisterStartRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebAuthnRegisterStartRequest
impl<'de> Deserialize<'de> for WebAuthnRegisterStartRequest
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 WebAuthnRegisterStartRequest
impl PartialEq for WebAuthnRegisterStartRequest
Source§fn eq(&self, other: &WebAuthnRegisterStartRequest) -> bool
fn eq(&self, other: &WebAuthnRegisterStartRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebAuthnRegisterStartRequest
Auto Trait Implementations§
impl Freeze for WebAuthnRegisterStartRequest
impl RefUnwindSafe for WebAuthnRegisterStartRequest
impl Send for WebAuthnRegisterStartRequest
impl Sync for WebAuthnRegisterStartRequest
impl Unpin for WebAuthnRegisterStartRequest
impl UnwindSafe for WebAuthnRegisterStartRequest
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