pub struct WebAuthnAssertResponse {
pub credential: Option<Box<WebAuthnCredential>>,
}
Expand description
WebAuthnAssertResponse : API response for completing WebAuthn assertion
Fields§
§credential: Option<Box<WebAuthnCredential>>
Implementations§
Source§impl WebAuthnAssertResponse
impl WebAuthnAssertResponse
Sourcepub fn new() -> WebAuthnAssertResponse
pub fn new() -> WebAuthnAssertResponse
API response for completing WebAuthn assertion
Trait Implementations§
Source§impl Clone for WebAuthnAssertResponse
impl Clone for WebAuthnAssertResponse
Source§fn clone(&self) -> WebAuthnAssertResponse
fn clone(&self) -> WebAuthnAssertResponse
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 WebAuthnAssertResponse
impl Debug for WebAuthnAssertResponse
Source§impl Default for WebAuthnAssertResponse
impl Default for WebAuthnAssertResponse
Source§fn default() -> WebAuthnAssertResponse
fn default() -> WebAuthnAssertResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebAuthnAssertResponse
impl<'de> Deserialize<'de> for WebAuthnAssertResponse
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 WebAuthnAssertResponse
impl PartialEq for WebAuthnAssertResponse
Source§impl Serialize for WebAuthnAssertResponse
impl Serialize for WebAuthnAssertResponse
impl StructuralPartialEq for WebAuthnAssertResponse
Auto Trait Implementations§
impl Freeze for WebAuthnAssertResponse
impl RefUnwindSafe for WebAuthnAssertResponse
impl Send for WebAuthnAssertResponse
impl Sync for WebAuthnAssertResponse
impl Unpin for WebAuthnAssertResponse
impl UnwindSafe for WebAuthnAssertResponse
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