#[non_exhaustive]pub struct StartDeviceAuthorizationOutput { /* private fields */ }
Implementations
sourceimpl StartDeviceAuthorizationOutput
impl StartDeviceAuthorizationOutput
sourcepub fn device_code(&self) -> Option<&str>
pub fn device_code(&self) -> Option<&str>
The short-lived code that is used by the device when polling for a session token.
sourcepub fn user_code(&self) -> Option<&str>
pub fn user_code(&self) -> Option<&str>
A one-time user verification code. This is needed to authorize an in-use device.
sourcepub fn verification_uri(&self) -> Option<&str>
pub fn verification_uri(&self) -> Option<&str>
The URI of the verification page that takes the userCode
to authorize the device.
sourcepub fn verification_uri_complete(&self) -> Option<&str>
pub fn verification_uri_complete(&self) -> Option<&str>
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.
sourcepub fn expires_in(&self) -> i32
pub fn expires_in(&self) -> i32
Indicates the number of seconds in which the verification code will become invalid.
sourceimpl StartDeviceAuthorizationOutput
impl StartDeviceAuthorizationOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartDeviceAuthorizationOutput
.
Trait Implementations
sourceimpl Clone for StartDeviceAuthorizationOutput
impl Clone for StartDeviceAuthorizationOutput
sourcefn clone(&self) -> StartDeviceAuthorizationOutput
fn clone(&self) -> StartDeviceAuthorizationOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<StartDeviceAuthorizationOutput> for StartDeviceAuthorizationOutput
impl PartialEq<StartDeviceAuthorizationOutput> for StartDeviceAuthorizationOutput
sourcefn eq(&self, other: &StartDeviceAuthorizationOutput) -> bool
fn eq(&self, other: &StartDeviceAuthorizationOutput) -> bool
impl StructuralPartialEq for StartDeviceAuthorizationOutput
Auto Trait Implementations
impl RefUnwindSafe for StartDeviceAuthorizationOutput
impl Send for StartDeviceAuthorizationOutput
impl Sync for StartDeviceAuthorizationOutput
impl Unpin for StartDeviceAuthorizationOutput
impl UnwindSafe for StartDeviceAuthorizationOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more