Struct fusionauth_rust_client::models::public_key_credential_descriptor::PublicKeyCredentialDescriptor
source · pub struct PublicKeyCredentialDescriptor {
pub id: Option<String>,
pub transports: Option<Vec<String>>,
pub type: Option<PublicKeyCredentialType>,
}
Expand description
PublicKeyCredentialDescriptor : Contains attributes for the Relying Party to refer to an existing public key credential as an input parameter.
Fields§
§id: Option<String>
§transports: Option<Vec<String>>
§type: Option<PublicKeyCredentialType>
Implementations§
source§impl PublicKeyCredentialDescriptor
impl PublicKeyCredentialDescriptor
sourcepub fn new() -> PublicKeyCredentialDescriptor
pub fn new() -> PublicKeyCredentialDescriptor
Contains attributes for the Relying Party to refer to an existing public key credential as an input parameter.
Trait Implementations§
source§impl Clone for PublicKeyCredentialDescriptor
impl Clone for PublicKeyCredentialDescriptor
source§fn clone(&self) -> PublicKeyCredentialDescriptor
fn clone(&self) -> PublicKeyCredentialDescriptor
Returns a copy 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 Default for PublicKeyCredentialDescriptor
impl Default for PublicKeyCredentialDescriptor
source§fn default() -> PublicKeyCredentialDescriptor
fn default() -> PublicKeyCredentialDescriptor
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PublicKeyCredentialDescriptor
impl<'de> Deserialize<'de> for PublicKeyCredentialDescriptor
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 PartialEq for PublicKeyCredentialDescriptor
impl PartialEq for PublicKeyCredentialDescriptor
source§fn eq(&self, other: &PublicKeyCredentialDescriptor) -> bool
fn eq(&self, other: &PublicKeyCredentialDescriptor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PublicKeyCredentialDescriptor
Auto Trait Implementations§
impl RefUnwindSafe for PublicKeyCredentialDescriptor
impl Send for PublicKeyCredentialDescriptor
impl Sync for PublicKeyCredentialDescriptor
impl Unpin for PublicKeyCredentialDescriptor
impl UnwindSafe for PublicKeyCredentialDescriptor
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