pub struct PasskeyCredPropsResult {
pub rk: Option<bool>,
}Expand description
The result of the WebAuthn credProps extension.
JSON schema
{
"title": "PasskeyCredPropsResult",
"description": "The result of the WebAuthn credProps extension.",
"type": "object",
"properties": {
"rk": {
"type": "boolean"
}
},
"x-stainless-model": "client_auth.passkey_cred_props_result"
}Fields§
§rk: Option<bool>Trait Implementations§
Source§impl Clone for PasskeyCredPropsResult
impl Clone for PasskeyCredPropsResult
Source§fn clone(&self) -> PasskeyCredPropsResult
fn clone(&self) -> PasskeyCredPropsResult
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 PasskeyCredPropsResult
impl Debug for PasskeyCredPropsResult
Source§impl Default for PasskeyCredPropsResult
impl Default for PasskeyCredPropsResult
Source§impl<'de> Deserialize<'de> for PasskeyCredPropsResult
impl<'de> Deserialize<'de> for PasskeyCredPropsResult
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<&PasskeyCredPropsResult> for PasskeyCredPropsResult
impl From<&PasskeyCredPropsResult> for PasskeyCredPropsResult
Source§fn from(value: &PasskeyCredPropsResult) -> Self
fn from(value: &PasskeyCredPropsResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PasskeyCredPropsResult
impl RefUnwindSafe for PasskeyCredPropsResult
impl Send for PasskeyCredPropsResult
impl Sync for PasskeyCredPropsResult
impl Unpin for PasskeyCredPropsResult
impl UnsafeUnpin for PasskeyCredPropsResult
impl UnwindSafe for PasskeyCredPropsResult
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