pub struct PublicKeyCredentialCreationOptions {
pub rp: RpEntity,
pub user: UserEntity,
pub challenge: String,
pub pub_key_cred_params: Vec<PubKeyCredParam>,
pub timeout: Option<u64>,
pub exclude_credentials: Option<Vec<CredentialDescriptor>>,
pub authenticator_selection: Option<AuthenticatorSelection>,
pub attestation: Option<String>,
}Fields§
§rp: RpEntity§user: UserEntity§challenge: String§pub_key_cred_params: Vec<PubKeyCredParam>§timeout: Option<u64>§exclude_credentials: Option<Vec<CredentialDescriptor>>§authenticator_selection: Option<AuthenticatorSelection>§attestation: Option<String>Trait Implementations§
Source§impl Clone for PublicKeyCredentialCreationOptions
impl Clone for PublicKeyCredentialCreationOptions
Source§fn clone(&self) -> PublicKeyCredentialCreationOptions
fn clone(&self) -> PublicKeyCredentialCreationOptions
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 PublicKeyCredentialCreationOptions
impl<'de> Deserialize<'de> for PublicKeyCredentialCreationOptions
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 PublicKeyCredentialCreationOptions
impl RefUnwindSafe for PublicKeyCredentialCreationOptions
impl Send for PublicKeyCredentialCreationOptions
impl Sync for PublicKeyCredentialCreationOptions
impl Unpin for PublicKeyCredentialCreationOptions
impl UnsafeUnpin for PublicKeyCredentialCreationOptions
impl UnwindSafe for PublicKeyCredentialCreationOptions
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