Trait aws_smithy_client::bounds::SmithyConnector
source · pub trait SmithyConnector: Service<Request<SdkBody>, Response = Response<SdkBody>, Error = Self::Error, Future = Self::Future> + Send + Sync + Clone + 'static {
type Error: Into<ConnectorError> + Send + Sync + 'static;
type Future: Send + 'static;
}
Expand description
A low-level Smithy connector that maps from http::Request
to http::Response
.
This trait has a blanket implementation for all compatible types, and should never be implemented.
Required Associated Types§
Object Safety§
This trait is not object safe.