pub struct AuthenticationExtensionsClientOutputs {
pub appid: Option<bool>,
pub cred_blob: Option<bool>,
}Expand description
https://w3c.github.io/webauthn/#dictdef-authenticationextensionsclientoutputs The default option here for Options are None, so it can be derived
Fields
appid: Option<bool>Indicates whether the client used the provided appid extension
cred_blob: Option<bool>Indicates if the client used the provided cred_blob extensions.
Trait Implementations
sourceimpl Clone for AuthenticationExtensionsClientOutputs
impl Clone for AuthenticationExtensionsClientOutputs
sourcefn clone(&self) -> AuthenticationExtensionsClientOutputs
fn clone(&self) -> AuthenticationExtensionsClientOutputs
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Default for AuthenticationExtensionsClientOutputs
impl Default for AuthenticationExtensionsClientOutputs
sourcefn default() -> AuthenticationExtensionsClientOutputs
fn default() -> AuthenticationExtensionsClientOutputs
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AuthenticationExtensionsClientOutputs
impl<'de> Deserialize<'de> for AuthenticationExtensionsClientOutputs
sourcefn 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
Auto Trait Implementations
impl RefUnwindSafe for AuthenticationExtensionsClientOutputs
impl Send for AuthenticationExtensionsClientOutputs
impl Sync for AuthenticationExtensionsClientOutputs
impl Unpin for AuthenticationExtensionsClientOutputs
impl UnwindSafe for AuthenticationExtensionsClientOutputs
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more