pub struct RequestChallengeResponse {
pub public_key: PublicKeyCredentialRequestOptions,
pub mediation: Option<Mediation>,
}Expand description
A JSON serializable challenge which is issued to the user’s webbrowser 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: PublicKeyCredentialRequestOptionsThe options.
mediation: Option<Mediation>The mediation requested
Trait Implementations
impl Clone for RequestChallengeResponse
impl Clone for RequestChallengeResponse
fn clone(&self) -> RequestChallengeResponse
fn clone(&self) -> RequestChallengeResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Debug for RequestChallengeResponse
impl Debug for RequestChallengeResponse
impl<'de> Deserialize<'de> for RequestChallengeResponse
impl<'de> Deserialize<'de> for RequestChallengeResponse
fn deserialize<__D>(
__deserializer: __D
) -> Result<RequestChallengeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<RequestChallengeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Serialize for RequestChallengeResponse
impl Serialize for RequestChallengeResponse
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 RefUnwindSafe for RequestChallengeResponse
impl Send for RequestChallengeResponse
impl Sync for RequestChallengeResponse
impl Unpin for RequestChallengeResponse
impl UnwindSafe for RequestChallengeResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more