pub struct CreateRegistrationChallengeResponse {
pub user: Value,
pub temporary_authentication_token: String,
pub challenge: String,
pub rp: Option<Value>,
pub supported_credential_kinds: Value,
pub authenticator_selection: Value,
pub attestation: String,
pub pub_key_cred_params: Vec<Value>,
pub exclude_credentials: Vec<Value>,
pub otp_url: String,
}Expand description
Create Registration Challenge
Fields§
§user: Value§temporary_authentication_token: String§challenge: String§rp: Option<Value>§supported_credential_kinds: Value§authenticator_selection: Value§attestation: String§pub_key_cred_params: Vec<Value>§exclude_credentials: Vec<Value>§otp_url: StringTrait Implementations§
Source§impl Clone for CreateRegistrationChallengeResponse
impl Clone for CreateRegistrationChallengeResponse
Source§fn clone(&self) -> CreateRegistrationChallengeResponse
fn clone(&self) -> CreateRegistrationChallengeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateRegistrationChallengeResponse
impl<'de> Deserialize<'de> for CreateRegistrationChallengeResponse
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 CreateRegistrationChallengeResponse
impl RefUnwindSafe for CreateRegistrationChallengeResponse
impl Send for CreateRegistrationChallengeResponse
impl Sync for CreateRegistrationChallengeResponse
impl Unpin for CreateRegistrationChallengeResponse
impl UnsafeUnpin for CreateRegistrationChallengeResponse
impl UnwindSafe for CreateRegistrationChallengeResponse
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