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