Struct aws_smithy_http_tower::dispatch::DispatchService
source · pub struct DispatchService<S> { /* private fields */ }Expand description
Connects Operation driven middleware to an HTTP implementation.
It will also wrap the error type in OperationError to enable operation middleware reporting specific errors
Trait Implementations§
source§impl<S: Clone> Clone for DispatchService<S>
impl<S: Clone> Clone for DispatchService<S>
source§fn clone(&self) -> DispatchService<S>
fn clone(&self) -> DispatchService<S>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<S> Service<Request> for DispatchService<S>where
S: Service<Request<SdkBody>, Response = Response<SdkBody>> + Clone + Send + 'static,
S::Error: Into<ConnectorError>,
S::Future: Send + 'static,
impl<S> Service<Request> for DispatchService<S>where
S: Service<Request<SdkBody>, Response = Response<SdkBody>> + Clone + Send + 'static,
S::Error: Into<ConnectorError>,
S::Future: Send + 'static,
§type Error = SendOperationError
type Error = SendOperationError
Errors produced by the service.
§type Future = Pin<Box<dyn Future<Output = Result<<DispatchService<S> as Service<Request>>::Response, <DispatchService<S> as Service<Request>>::Error>> + Send + 'static, Global>>
type Future = Pin<Box<dyn Future<Output = Result<<DispatchService<S> as Service<Request>>::Response, <DispatchService<S> as Service<Request>>::Error>> + Send + 'static, Global>>
The future response value.