[][src]Struct ctap_hid_fido2::make_credential_params::Attestation

pub struct Attestation {
    pub fmt: String,
    pub rpid_hash: Vec<u8>,
    pub flags_user_present_result: bool,
    pub flags_user_verified_result: bool,
    pub flags_attested_credential_data_included: bool,
    pub flags_extension_data_included: bool,
    pub sign_count: u32,
    pub aaguid: Vec<u8>,
    pub credential_id: Vec<u8>,
    pub credential_publickey_pem: String,
    pub credential_publickey_der: Vec<u8>,
    pub auth_data: Vec<u8>,
    pub attstmt_alg: i32,
    pub attstmt_sig: Vec<u8>,
    pub attstmt_x5c: Vec<Vec<u8>>,
}

Fields

fmt: Stringrpid_hash: Vec<u8>flags_user_present_result: boolflags_user_verified_result: boolflags_attested_credential_data_included: boolflags_extension_data_included: boolsign_count: u32aaguid: Vec<u8>credential_id: Vec<u8>credential_publickey_pem: Stringcredential_publickey_der: Vec<u8>auth_data: Vec<u8>attstmt_alg: i32attstmt_sig: Vec<u8>attstmt_x5c: Vec<Vec<u8>>

Implementations

impl Attestation[src]

pub fn print(self: &Attestation, title: &str)[src]

Trait Implementations

impl Debug for Attestation[src]

impl Default for Attestation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.