[][src]Struct rusoto_sso_oidc::StartDeviceAuthorizationResponse

pub struct StartDeviceAuthorizationResponse {
    pub device_code: Option<String>,
    pub expires_in: Option<i64>,
    pub interval: Option<i64>,
    pub user_code: Option<String>,
    pub verification_uri: Option<String>,
    pub verification_uri_complete: Option<String>,
}

Fields

device_code: Option<String>

The short-lived code that is used by the device when polling for a session token.

expires_in: Option<i64>

Indicates the number of seconds in which the verification code will become invalid.

interval: Option<i64>

Indicates the number of seconds the client must wait between attempts when polling for a session.

user_code: Option<String>

A one-time user verification code. This is needed to authorize an in-use device.

verification_uri: Option<String>

The URI of the verification page that takes the userCode to authorize the device.

verification_uri_complete: Option<String>

An alternate URL that the client can use to automatically launch a browser. This process skips the manual step in which the user visits the verification page and enters their code.

Trait Implementations

impl Clone for StartDeviceAuthorizationResponse[src]

impl Debug for StartDeviceAuthorizationResponse[src]

impl Default for StartDeviceAuthorizationResponse[src]

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

impl PartialEq<StartDeviceAuthorizationResponse> for StartDeviceAuthorizationResponse[src]

impl StructuralPartialEq for StartDeviceAuthorizationResponse[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: Deserialize<'de>, 
[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> 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.