pub struct PasskeyRelyingParty {
pub id: Option<String>,
pub name: String,
}Expand description
Relying party information for a WebAuthn ceremony.
JSON schema
{
"title": "PasskeyRelyingParty",
"description": "Relying party information for a WebAuthn ceremony.",
"type": "object",
"required": [
"name"
],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"x-stainless-model": "client_auth.passkey_relying_party"
}Fields§
§id: Option<String>§name: StringTrait Implementations§
Source§impl Clone for PasskeyRelyingParty
impl Clone for PasskeyRelyingParty
Source§fn clone(&self) -> PasskeyRelyingParty
fn clone(&self) -> PasskeyRelyingParty
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 PasskeyRelyingParty
impl Debug for PasskeyRelyingParty
Source§impl<'de> Deserialize<'de> for PasskeyRelyingParty
impl<'de> Deserialize<'de> for PasskeyRelyingParty
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<&PasskeyRelyingParty> for PasskeyRelyingParty
impl From<&PasskeyRelyingParty> for PasskeyRelyingParty
Source§fn from(value: &PasskeyRelyingParty) -> Self
fn from(value: &PasskeyRelyingParty) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PasskeyRelyingParty
impl RefUnwindSafe for PasskeyRelyingParty
impl Send for PasskeyRelyingParty
impl Sync for PasskeyRelyingParty
impl Unpin for PasskeyRelyingParty
impl UnsafeUnpin for PasskeyRelyingParty
impl UnwindSafe for PasskeyRelyingParty
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