pub struct AuthPasskeyLinkedRegistrationRequestBody {
pub authenticator_response: PasskeyAuthenticatorRegistrationCredential,
pub relying_party: Option<String>,
pub user_id: String,
}Expand description
The authenticator response for the registration ceremony linked to a user account.
JSON schema
{
"title": "AuthPasskeyLinkedRegistrationRequestBody",
"description": "The authenticator response for the registration
ceremony linked to a user account.",
"type": "object",
"required": [
"authenticator_response",
"user_id"
],
"properties": {
"authenticator_response": {
"$ref":
"#/components/schemas/PasskeyAuthenticatorRegistrationCredential"
},
"relying_party": {
"type": "string",
"format": "uri"
},
"user_id": {
"type": "string"
}
}
}Fields§
§authenticator_response: PasskeyAuthenticatorRegistrationCredential§relying_party: Option<String>§user_id: StringTrait Implementations§
Source§impl Clone for AuthPasskeyLinkedRegistrationRequestBody
impl Clone for AuthPasskeyLinkedRegistrationRequestBody
Source§fn clone(&self) -> AuthPasskeyLinkedRegistrationRequestBody
fn clone(&self) -> AuthPasskeyLinkedRegistrationRequestBody
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 AuthPasskeyLinkedRegistrationRequestBody
impl<'de> Deserialize<'de> for AuthPasskeyLinkedRegistrationRequestBody
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<&AuthPasskeyLinkedRegistrationRequestBody> for AuthPasskeyLinkedRegistrationRequestBody
impl From<&AuthPasskeyLinkedRegistrationRequestBody> for AuthPasskeyLinkedRegistrationRequestBody
Source§fn from(value: &AuthPasskeyLinkedRegistrationRequestBody) -> Self
fn from(value: &AuthPasskeyLinkedRegistrationRequestBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthPasskeyLinkedRegistrationRequestBody
impl RefUnwindSafe for AuthPasskeyLinkedRegistrationRequestBody
impl Send for AuthPasskeyLinkedRegistrationRequestBody
impl Sync for AuthPasskeyLinkedRegistrationRequestBody
impl Unpin for AuthPasskeyLinkedRegistrationRequestBody
impl UnwindSafe for AuthPasskeyLinkedRegistrationRequestBody
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