pub struct AssertionResponse {
pub client_data_json: String,
pub authenticator_data: String,
pub signature: String,
pub user_handle: Option<String>,
}Fields§
§client_data_json: String§authenticator_data: String§signature: String§user_handle: Option<String>Trait Implementations§
Source§impl Clone for AssertionResponse
impl Clone for AssertionResponse
Source§fn clone(&self) -> AssertionResponse
fn clone(&self) -> AssertionResponse
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 Debug for AssertionResponse
impl Debug for AssertionResponse
Source§impl<'de> Deserialize<'de> for AssertionResponse
impl<'de> Deserialize<'de> for AssertionResponse
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 AssertionResponse
impl RefUnwindSafe for AssertionResponse
impl Send for AssertionResponse
impl Sync for AssertionResponse
impl Unpin for AssertionResponse
impl UnsafeUnpin for AssertionResponse
impl UnwindSafe for AssertionResponse
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