pub struct SetCredentialPropertiesParams {
pub authenticatorId: AuthenticatorId,
pub credentialId: String,
pub backupEligibility: Option<bool>,
pub backupState: Option<bool>,
}Expand description
Allows setting credential properties. https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
Fields§
§authenticatorId: AuthenticatorId§credentialId: String§backupEligibility: Option<bool>§backupState: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for SetCredentialPropertiesParams
impl Clone for SetCredentialPropertiesParams
Source§fn clone(&self) -> SetCredentialPropertiesParams
fn clone(&self) -> SetCredentialPropertiesParams
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 Default for SetCredentialPropertiesParams
impl Default for SetCredentialPropertiesParams
Source§fn default() -> SetCredentialPropertiesParams
fn default() -> SetCredentialPropertiesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetCredentialPropertiesParams
impl<'de> Deserialize<'de> for SetCredentialPropertiesParams
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
Auto Trait Implementations§
impl Freeze for SetCredentialPropertiesParams
impl RefUnwindSafe for SetCredentialPropertiesParams
impl Send for SetCredentialPropertiesParams
impl Sync for SetCredentialPropertiesParams
impl Unpin for SetCredentialPropertiesParams
impl UnsafeUnpin for SetCredentialPropertiesParams
impl UnwindSafe for SetCredentialPropertiesParams
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