#[non_exhaustive]pub struct Builder { /* private fields */ }Expand description
A builder for StartDeviceAuthorizationOutput
Implementations
sourceimpl Builder
impl Builder
sourcepub fn device_code(self, input: impl Into<String>) -> Self
pub fn device_code(self, input: impl Into<String>) -> Self
The short-lived code that is used by the device when polling for a session token.
sourcepub fn set_device_code(self, input: Option<String>) -> Self
pub fn set_device_code(self, input: Option<String>) -> Self
The short-lived code that is used by the device when polling for a session token.
sourcepub fn user_code(self, input: impl Into<String>) -> Self
pub fn user_code(self, input: impl Into<String>) -> Self
A one-time user verification code. This is needed to authorize an in-use device.
sourcepub fn set_user_code(self, input: Option<String>) -> Self
pub fn set_user_code(self, input: Option<String>) -> Self
A one-time user verification code. This is needed to authorize an in-use device.
sourcepub fn verification_uri(self, input: impl Into<String>) -> Self
pub fn verification_uri(self, input: impl Into<String>) -> Self
The URI of the verification page that takes the userCode to authorize the device.
sourcepub fn set_verification_uri(self, input: Option<String>) -> Self
pub fn set_verification_uri(self, input: Option<String>) -> Self
The URI of the verification page that takes the userCode to authorize the device.
sourcepub fn verification_uri_complete(self, input: impl Into<String>) -> Self
pub fn verification_uri_complete(self, input: impl Into<String>) -> Self
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 set_verification_uri_complete(self, input: Option<String>) -> Self
pub fn set_verification_uri_complete(self, input: Option<String>) -> Self
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, input: i32) -> Self
pub fn expires_in(self, input: i32) -> Self
Indicates the number of seconds in which the verification code will become invalid.
sourcepub fn set_expires_in(self, input: Option<i32>) -> Self
pub fn set_expires_in(self, input: Option<i32>) -> Self
Indicates the number of seconds in which the verification code will become invalid.
sourcepub fn interval(self, input: i32) -> Self
pub fn interval(self, input: i32) -> Self
Indicates the number of seconds the client must wait between attempts when polling for a session.
sourcepub fn set_interval(self, input: Option<i32>) -> Self
pub fn set_interval(self, input: Option<i32>) -> Self
Indicates the number of seconds the client must wait between attempts when polling for a session.
sourcepub fn build(self) -> StartDeviceAuthorizationOutput
pub fn build(self) -> StartDeviceAuthorizationOutput
Consumes the builder and constructs a StartDeviceAuthorizationOutput
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more