pub trait SmithyMiddlewareService: Service<Request, Response = Response, Error = SendOperationError, Future = Self::Future> {
type Future: Send + 'static;
}
Expand description
A Smithy middleware service that adjusts aws_smithy_http::operation::Request
s.
This trait has a blanket implementation for all compatible types, and should never be implemented.