Struct yup_oauth2::DeviceFlowAuthenticator
source · pub struct DeviceFlowAuthenticator;
Expand description
Create an authenticator that uses the device flow.
let authenticator = yup_oauth2::DeviceFlowAuthenticator::builder(app_secret)
.build()
.await
.expect("failed to create authenticator");
Implementations§
source§impl DeviceFlowAuthenticator
impl DeviceFlowAuthenticator
sourcepub fn builder(
app_secret: ApplicationSecret,
) -> AuthenticatorBuilder<DefaultHyperClient, DeviceFlow>
Available on crate features hyper-rustls
or hyper-tls
only.
pub fn builder( app_secret: ApplicationSecret, ) -> AuthenticatorBuilder<DefaultHyperClient, DeviceFlow>
hyper-rustls
or hyper-tls
only.Use the builder pattern to create an Authenticator that uses the device flow.
sourcepub fn with_client<C>(
app_secret: ApplicationSecret,
client: C,
) -> AuthenticatorBuilder<C, DeviceFlow>
pub fn with_client<C>( app_secret: ApplicationSecret, client: C, ) -> AuthenticatorBuilder<C, DeviceFlow>
Construct a new Authenticator that uses the installed flow and the provided http client.
Auto Trait Implementations§
impl Freeze for DeviceFlowAuthenticator
impl RefUnwindSafe for DeviceFlowAuthenticator
impl Send for DeviceFlowAuthenticator
impl Sync for DeviceFlowAuthenticator
impl Unpin for DeviceFlowAuthenticator
impl UnwindSafe for DeviceFlowAuthenticator
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more