pub struct WebAuthnStartRequest {
pub application_id: Option<Uuid>,
pub credential_id: Option<Uuid>,
pub login_id: Option<String>,
pub state: Option<HashMap<String, Value>>,
pub user_id: Option<Uuid>,
pub workflow: Option<WebAuthnWorkflow>,
}
Expand description
WebAuthnStartRequest : API request to start a WebAuthn authentication ceremony
Fields§
§application_id: Option<Uuid>
§credential_id: Option<Uuid>
§login_id: Option<String>
§state: Option<HashMap<String, Value>>
§user_id: Option<Uuid>
§workflow: Option<WebAuthnWorkflow>
Implementations§
source§impl WebAuthnStartRequest
impl WebAuthnStartRequest
sourcepub fn new() -> WebAuthnStartRequest
pub fn new() -> WebAuthnStartRequest
API request to start a WebAuthn authentication ceremony
Trait Implementations§
source§impl Clone for WebAuthnStartRequest
impl Clone for WebAuthnStartRequest
source§fn clone(&self) -> WebAuthnStartRequest
fn clone(&self) -> WebAuthnStartRequest
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 WebAuthnStartRequest
impl Debug for WebAuthnStartRequest
source§impl Default for WebAuthnStartRequest
impl Default for WebAuthnStartRequest
source§fn default() -> WebAuthnStartRequest
fn default() -> WebAuthnStartRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WebAuthnStartRequest
impl<'de> Deserialize<'de> for WebAuthnStartRequest
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 WebAuthnStartRequest
impl PartialEq for WebAuthnStartRequest
source§fn eq(&self, other: &WebAuthnStartRequest) -> bool
fn eq(&self, other: &WebAuthnStartRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WebAuthnStartRequest
impl Serialize for WebAuthnStartRequest
impl StructuralPartialEq for WebAuthnStartRequest
Auto Trait Implementations§
impl RefUnwindSafe for WebAuthnStartRequest
impl Send for WebAuthnStartRequest
impl Sync for WebAuthnStartRequest
impl Unpin for WebAuthnStartRequest
impl UnwindSafe for WebAuthnStartRequest
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