[][src]Struct rusoto_core::request::HttpClient

pub struct HttpClient<C = HttpsConnector<HttpConnector>> { /* fields omitted */ }

Http client for use with AWS services.

Methods

impl HttpClient[src]

pub fn new() -> Result<Self, TlsError>[src]

Create a tls-enabled http client.

pub fn new_with_config(config: HttpConfig) -> Result<Self, TlsError>[src]

Create a tls-enabled http client.

impl<C> HttpClient<C> where
    C: Connect,
    C::Future: 'static, 
[src]

pub fn from_connector(connector: C) -> Self[src]

Allows for a custom connector to be used with the HttpClient

pub fn from_connector_with_config(connector: C, config: HttpConfig) -> Self[src]

Allows for a custom connector to be used with the HttpClient with extra configuration options

Trait Implementations

impl<C> DispatchSignedRequest for HttpClient<C> where
    C: Connect + 'static,
    C::Future: 'static, 
[src]

type Future = HttpClientFuture

The future response value.

Auto Trait Implementations

impl<C> Send for HttpClient<C> where
    C: Send + Sync

impl<C> Sync for HttpClient<C> where
    C: Send + Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self