[][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.

Implementations

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: Clone + ProvideAwsCredentials + 'static> Clone for AutoRefreshingProvider<P>[src]

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

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

Auto Trait Implementations

impl<P> !RefUnwindSafe for AutoRefreshingProvider<P>[src]

impl<P> Send for AutoRefreshingProvider<P> where
    P: Send
[src]

impl<P> Sync for AutoRefreshingProvider<P> where
    P: Sync
[src]

impl<P> Unpin for AutoRefreshingProvider<P> where
    P: Unpin
[src]

impl<P> !UnwindSafe for AutoRefreshingProvider<P>[src]

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> From<T> for T[src]

impl<T> Instrument for T[src]

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

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.