Trait aws_sdk_rust::aws::common::request::DispatchSignedRequest
[−]
[src]
pub trait DispatchSignedRequest { fn dispatch(
&self,
request: &SignedRequest
) -> Result<HttpResponse, HttpDispatchError>; }
Trait that is added to the Hyper Client type. This is where ALL HTTP calls get sent from.
Required Methods
fn dispatch(
&self,
request: &SignedRequest
) -> Result<HttpResponse, HttpDispatchError>
&self,
request: &SignedRequest
) -> Result<HttpResponse, HttpDispatchError>
Implementors
impl DispatchSignedRequest for Client