pub struct ResponsePasskeyInitAuthenticate {
pub options: PasskeyAuthenticatorVerifyOptions,
pub relying_party: Option<String>,
}Expand description
Response for initiating a passkey authentication ceremony.
JSON schema
{
"title": "ResponsePasskeyInitAuthenticate",
"description": "Response for initiating a passkey authentication
ceremony.",
"type": "object",
"required": [
"options"
],
"properties": {
"options": {
"$ref": "#/components/schemas/PasskeyAuthenticatorVerifyOptions"
},
"relying_party": {
"type": "string",
"format": "uri"
}
},
"x-stainless-model": "client_auth.response_passkey_init_authenticate"
}Fields§
§options: PasskeyAuthenticatorVerifyOptions§relying_party: Option<String>Trait Implementations§
Source§impl Clone for ResponsePasskeyInitAuthenticate
impl Clone for ResponsePasskeyInitAuthenticate
Source§fn clone(&self) -> ResponsePasskeyInitAuthenticate
fn clone(&self) -> ResponsePasskeyInitAuthenticate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResponsePasskeyInitAuthenticate
impl<'de> Deserialize<'de> for ResponsePasskeyInitAuthenticate
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<&ResponsePasskeyInitAuthenticate> for ResponsePasskeyInitAuthenticate
impl From<&ResponsePasskeyInitAuthenticate> for ResponsePasskeyInitAuthenticate
Source§fn from(value: &ResponsePasskeyInitAuthenticate) -> Self
fn from(value: &ResponsePasskeyInitAuthenticate) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ResponsePasskeyInitAuthenticate
impl RefUnwindSafe for ResponsePasskeyInitAuthenticate
impl Send for ResponsePasskeyInitAuthenticate
impl Sync for ResponsePasskeyInitAuthenticate
impl Unpin for ResponsePasskeyInitAuthenticate
impl UnsafeUnpin for ResponsePasskeyInitAuthenticate
impl UnwindSafe for ResponsePasskeyInitAuthenticate
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