pub struct CredentialRequestOptions {
pub challenge: Option<String>,
pub timeout: Option<i64>,
pub rp_id: Option<String>,
pub allow_credentials: Option<Vec<PublicKeyCredentialDescriptor>>,
pub user_verification: Option<UserVerificationRequirement>,
}Expand description
Options for requesting a credential assertion.
Fields§
§challenge: Option<String>A challenge to be signed by the authenticator.
timeout: Option<i64>Time (in milliseconds) that the caller is willing to wait for the call to complete.
rp_id: Option<String>Relying Party ID.
allow_credentials: Option<Vec<PublicKeyCredentialDescriptor>>List of credentials acceptable for this authentication.
user_verification: Option<UserVerificationRequirement>User verification requirement.
Implementations§
Source§impl CredentialRequestOptions
impl CredentialRequestOptions
Sourcepub fn builder() -> CredentialRequestOptionsBuilder<((), (), (), (), ())>
pub fn builder() -> CredentialRequestOptionsBuilder<((), (), (), (), ())>
Create a builder for building CredentialRequestOptions.
On the builder, call .challenge(...)(optional), .timeout(...)(optional), .rp_id(...)(optional), .allow_credentials(...)(optional), .user_verification(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of CredentialRequestOptions.
Trait Implementations§
Source§impl Clone for CredentialRequestOptions
impl Clone for CredentialRequestOptions
Source§fn clone(&self) -> CredentialRequestOptions
fn clone(&self) -> CredentialRequestOptions
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CredentialRequestOptions
impl Debug for CredentialRequestOptions
Source§impl<'de> Deserialize<'de> for CredentialRequestOptions
impl<'de> Deserialize<'de> for CredentialRequestOptions
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 CredentialRequestOptions
impl RefUnwindSafe for CredentialRequestOptions
impl Send for CredentialRequestOptions
impl Sync for CredentialRequestOptions
impl Unpin for CredentialRequestOptions
impl UnwindSafe for CredentialRequestOptions
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)