[][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

pub fn from_builder(builder: HyperBuilder, connector: C) -> Self[src]

Alows for a custom builder and connector to be used with the HttpClient

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

impl<C> Unpin for HttpClient<C>

impl<C = HttpsConnector<HttpConnector<GaiResolver>>> !UnwindSafe for HttpClient<C>

impl<C = HttpsConnector<HttpConnector<GaiResolver>>> !RefUnwindSafe for HttpClient<C>

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self