pub struct CreationChallengeResponse {
pub public_key: PublicKeyCredentialCreationOptions,
}
Expand description
A JSON serializable challenge which is issued to the user’s web browser for handling. This is meant to be opaque, that is, you should not need to inspect or alter the content of the struct - you should serialise it and transmit it to the client only.
Fields§
§public_key: PublicKeyCredentialCreationOptions
The options.
Trait Implementations§
Source§impl Clone for CreationChallengeResponse
impl Clone for CreationChallengeResponse
Source§fn clone(&self) -> CreationChallengeResponse
fn clone(&self) -> CreationChallengeResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreationChallengeResponse
impl Debug for CreationChallengeResponse
Source§impl<'de> Deserialize<'de> for CreationChallengeResponse
impl<'de> Deserialize<'de> for CreationChallengeResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreationChallengeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreationChallengeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CreationChallengeResponse
impl Serialize for CreationChallengeResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CreationChallengeResponse
impl RefUnwindSafe for CreationChallengeResponse
impl Send for CreationChallengeResponse
impl Sync for CreationChallengeResponse
impl Unpin for CreationChallengeResponse
impl UnwindSafe for CreationChallengeResponse
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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