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