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

Forwarding type to <Self as Service>::Error for bound inference.

See module-level docs for details.

Forwarding type to <Self as Service>::Future for bound inference.

See module-level docs for details.

Implementors