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