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