Trait aws_hyper::SmithyConnector[][src]

pub trait SmithyConnector: 'static + Service<Request<SdkBody>, Response = Response<SdkBody>, Error = Self::Error, Future = Self::Future> + Send + Sync + Clone {
    type Error: 'static + Into<ConnectorError> + Send + Sync;
    type Future: 'static + Send;
}
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.

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