[][src]Struct google_verifiedaccess1::VerifyChallengeResponseResult

pub struct VerifyChallengeResponseResult {
    pub verification_output: Option<String>,
    pub signed_public_key_and_challenge: Option<String>,
    pub device_permanent_id: Option<String>,
    pub device_enrollment_id: Option<String>,
}

Result message for VerifiedAccess.VerifyChallengeResponse.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

verification_output: Option<String>

For EMCert check, device permanent id is returned here. For EUCert check, signed_public_key_and_challenge [base64 encoded] is returned if present, otherwise empty string is returned. This field is deprecated, please use device_permanent_id or signed_public_key_and_challenge fields.

signed_public_key_and_challenge: Option<String>

Certificate Signing Request (in the SPKAC format, base64 encoded) is returned in this field. This field will be set only if device has included CSR in its challenge response. (the option to include CSR is now available for both user and machine responses)

device_permanent_id: Option<String>

Device permanent id is returned in this field (for the machine response only).

device_enrollment_id: Option<String>

Device enrollment id is returned in this field (for the machine response only).

Trait Implementations

impl Clone for VerifyChallengeResponseResult[src]

impl Debug for VerifyChallengeResponseResult[src]

impl Default for VerifyChallengeResponseResult[src]

impl<'de> Deserialize<'de> for VerifyChallengeResponseResult[src]

impl ResponseResult for VerifyChallengeResponseResult[src]

impl Serialize for VerifyChallengeResponseResult[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Typeable for T where
    T: Any