Struct aws_http::auth::CredentialsStage
source · [−]#[non_exhaustive]pub struct CredentialsStage;Expand description
Middleware stage that loads credentials from a CredentialsProvider and places them in the property bag of the request.
CredentialsStage implements AsyncMapRequest, and:
- Retrieves a
CredentialsProviderfrom the property bag. - Calls the credential provider’s
provide_credentialsand awaits its result. - Places returned
Credentialsinto the property bad to drive downstream signing middleware.
Implementations
Trait Implementations
sourceimpl AsyncMapRequest for CredentialsStage
impl AsyncMapRequest for CredentialsStage
sourceimpl Clone for CredentialsStage
impl Clone for CredentialsStage
sourcefn clone(&self) -> CredentialsStage
fn clone(&self) -> CredentialsStage
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 Debug for CredentialsStage
impl Debug for CredentialsStage
sourceimpl Default for CredentialsStage
impl Default for CredentialsStage
sourcefn default() -> CredentialsStage
fn default() -> CredentialsStage
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for CredentialsStage
impl Send for CredentialsStage
impl Sync for CredentialsStage
impl Unpin for CredentialsStage
impl UnwindSafe for CredentialsStage
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