pub struct PasskeyInitInput {
pub relying_party: Option<String>,
pub token: Option<String>,
}Expand description
Input for initiating a passkey ceremony.
JSON schema
{
"title": "PasskeyInitInput",
"description": "Input for initiating a passkey ceremony.",
"type": "object",
"properties": {
"relying_party": {
"type": "string",
"format": "uri"
},
"token": {
"type": "string"
}
},
"x-stainless-model": "client_auth.passkey_init_input"
}Fields§
§relying_party: Option<String>§token: Option<String>Trait Implementations§
Source§impl Clone for PasskeyInitInput
impl Clone for PasskeyInitInput
Source§fn clone(&self) -> PasskeyInitInput
fn clone(&self) -> PasskeyInitInput
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 PasskeyInitInput
impl Debug for PasskeyInitInput
Source§impl Default for PasskeyInitInput
impl Default for PasskeyInitInput
Source§impl<'de> Deserialize<'de> for PasskeyInitInput
impl<'de> Deserialize<'de> for PasskeyInitInput
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<&PasskeyInitInput> for PasskeyInitInput
impl From<&PasskeyInitInput> for PasskeyInitInput
Source§fn from(value: &PasskeyInitInput) -> Self
fn from(value: &PasskeyInitInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PasskeyInitInput
impl RefUnwindSafe for PasskeyInitInput
impl Send for PasskeyInitInput
impl Sync for PasskeyInitInput
impl Unpin for PasskeyInitInput
impl UnsafeUnpin for PasskeyInitInput
impl UnwindSafe for PasskeyInitInput
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