pub struct AssertionResponse {
pub authenticator_data: Option<Vec<u8>>,
pub signature: Option<Vec<u8>>,
pub client_data_json: Option<Vec<u8>>,
pub user_handle: Option<Vec<u8>>,
}
Fields§
§authenticator_data: Option<Vec<u8>>
§signature: Option<Vec<u8>>
§client_data_json: Option<Vec<u8>>
§user_handle: Option<Vec<u8>>
Implementations§
Source§impl AssertionResponse
impl AssertionResponse
pub fn new() -> AssertionResponse
Trait Implementations§
Source§impl Clone for AssertionResponse
impl Clone for AssertionResponse
Source§fn clone(&self) -> AssertionResponse
fn clone(&self) -> AssertionResponse
Returns a copy 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 Default for AssertionResponse
impl Default for AssertionResponse
Source§fn default() -> AssertionResponse
fn default() -> AssertionResponse
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for AssertionResponse
impl PartialEq for AssertionResponse
Source§impl Serialize for AssertionResponse
impl Serialize for AssertionResponse
impl StructuralPartialEq for AssertionResponse
Auto Trait Implementations§
impl Freeze for AssertionResponse
impl RefUnwindSafe for AssertionResponse
impl Send for AssertionResponse
impl Sync for AssertionResponse
impl Unpin 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