pub struct ParsedAuthData {
pub rp_id_hash: Vec<u8>,
pub flags: u8,
pub sign_count: u32,
pub aaguid: Option<Vec<u8>>,
pub credential_id: Option<Vec<u8>>,
pub credential_public_key_cose: Option<Vec<u8>>,
pub credential_public_key: Option<CosePublicKey>,
}Fields§
§rp_id_hash: Vec<u8>§flags: u8§sign_count: u32§aaguid: Option<Vec<u8>>§credential_id: Option<Vec<u8>>§credential_public_key_cose: Option<Vec<u8>>§credential_public_key: Option<CosePublicKey>Trait Implementations§
Source§impl Clone for ParsedAuthData
impl Clone for ParsedAuthData
Source§fn clone(&self) -> ParsedAuthData
fn clone(&self) -> ParsedAuthData
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 moreAuto Trait Implementations§
impl Freeze for ParsedAuthData
impl RefUnwindSafe for ParsedAuthData
impl Send for ParsedAuthData
impl Sync for ParsedAuthData
impl Unpin for ParsedAuthData
impl UnsafeUnpin for ParsedAuthData
impl UnwindSafe for ParsedAuthData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more