pub struct AuthPasskeyAuthenticationInitResponseBody {
pub options: PasskeyAuthenticatorAuthenticationOptions,
pub relying_party: Option<PasskeyRelyingPartyUrl>,
}Expand description
The response body for initiating a passkey authentication ceremony.
JSON schema
{
"title": "AuthPasskeyAuthenticationInitResponseBody",
"description": "The response body for initiating a passkey
authentication ceremony.",
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"$ref":
"#/components/schemas/PasskeyAuthenticatorAuthenticationOptions"
},
"relying_party": {
"$ref": "#/components/schemas/PasskeyRelyingPartyUrl"
}
}
}Fields§
§options: PasskeyAuthenticatorAuthenticationOptions§relying_party: Option<PasskeyRelyingPartyUrl>Trait Implementations§
Source§impl Clone for AuthPasskeyAuthenticationInitResponseBody
impl Clone for AuthPasskeyAuthenticationInitResponseBody
Source§fn clone(&self) -> AuthPasskeyAuthenticationInitResponseBody
fn clone(&self) -> AuthPasskeyAuthenticationInitResponseBody
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<'de> Deserialize<'de> for AuthPasskeyAuthenticationInitResponseBody
impl<'de> Deserialize<'de> for AuthPasskeyAuthenticationInitResponseBody
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 From<&AuthPasskeyAuthenticationInitResponseBody> for AuthPasskeyAuthenticationInitResponseBody
impl From<&AuthPasskeyAuthenticationInitResponseBody> for AuthPasskeyAuthenticationInitResponseBody
Source§fn from(value: &AuthPasskeyAuthenticationInitResponseBody) -> Self
fn from(value: &AuthPasskeyAuthenticationInitResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthPasskeyAuthenticationInitResponseBody
impl RefUnwindSafe for AuthPasskeyAuthenticationInitResponseBody
impl Send for AuthPasskeyAuthenticationInitResponseBody
impl Sync for AuthPasskeyAuthenticationInitResponseBody
impl Unpin for AuthPasskeyAuthenticationInitResponseBody
impl UnwindSafe for AuthPasskeyAuthenticationInitResponseBody
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