Struct aws_sdk_s3::middleware::DefaultMiddleware
source · [−]#[non_exhaustive]pub struct DefaultMiddleware;
Expand description
AWS Middleware Stack
This implements the middleware stack for this service. It will:
- Load credentials asynchronously into the property bag
- Sign the request with SigV4
- Resolve an Endpoint for the request
- Add a user agent to the request
Implementations
Trait Implementations
sourceimpl Clone for DefaultMiddleware
impl Clone for DefaultMiddleware
sourcefn clone(&self) -> DefaultMiddleware
fn clone(&self) -> DefaultMiddleware
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 DefaultMiddleware
impl Debug for DefaultMiddleware
sourceimpl Default for DefaultMiddleware
impl Default for DefaultMiddleware
sourcefn default() -> DefaultMiddleware
fn default() -> DefaultMiddleware
Returns the “default value” for a type. Read more
sourceimpl<S> Layer<S> for DefaultMiddleware
impl<S> Layer<S> for DefaultMiddleware
type Service = <Stack<MapRequestLayer<RecursionDetectionStage>, Stack<MapRequestLayer<SigV4SigningStage>, Stack<AsyncMapRequestLayer<CredentialsStage>, Stack<MapRequestLayer<UserAgentStage>, Stack<MapRequestLayer<AwsEndpointStage>, Identity>>>>> as Layer<S>>::Service
type Service = <Stack<MapRequestLayer<RecursionDetectionStage>, Stack<MapRequestLayer<SigV4SigningStage>, Stack<AsyncMapRequestLayer<CredentialsStage>, Stack<MapRequestLayer<UserAgentStage>, Stack<MapRequestLayer<AwsEndpointStage>, Identity>>>>> as Layer<S>>::Service
The wrapped service
Auto Trait Implementations
impl RefUnwindSafe for DefaultMiddleware
impl Send for DefaultMiddleware
impl Sync for DefaultMiddleware
impl Unpin for DefaultMiddleware
impl UnwindSafe for DefaultMiddleware
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