[][src]Struct rusoto_credential::AutoRefreshingProvider

pub struct AutoRefreshingProvider<P: ProvideAwsCredentials + 'static> { /* fields omitted */ }

Wrapper for ProvideAwsCredentials that caches the credentials returned by the wrapped provider. Each time the credentials are accessed, they are checked to see if they have expired, in which case they are retrieved from the wrapped provider again.

In order to access the wrapped provider, for instance to set a timeout, the get_ref and get_mut methods can be used.

Methods

impl<P: ProvideAwsCredentials + 'static> AutoRefreshingProvider<P>[src]

pub fn new(provider: P) -> Result<AutoRefreshingProvider<P>, CredentialsError>[src]

Create a new AutoRefreshingProvider around the provided base provider.

pub fn get_ref(&self) -> &P[src]

Get a shared reference to the wrapped provider.

pub fn get_mut(&mut self) -> &mut P[src]

Get a mutable reference to the wrapped provider.

This can be used to call set_timeout on the wrapped provider.

Trait Implementations

impl<P: ProvideAwsCredentials + 'static> ProvideAwsCredentials for AutoRefreshingProvider<P>[src]

type Future = AutoRefreshingProviderFuture<P>

The future response value.

impl<P: Debug + ProvideAwsCredentials + 'static> Debug for AutoRefreshingProvider<P> where
    P::Future: Debug
[src]

Auto Trait Implementations

impl<P> Send for AutoRefreshingProvider<P> where
    P: Send,
    <P as ProvideAwsCredentials>::Future: Future + Send

impl<P> Sync for AutoRefreshingProvider<P> where
    P: Sync,
    <P as ProvideAwsCredentials>::Future: Future + Send

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T