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

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

Http client for use with AWS services.

Implementations

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.

pub fn local_agent(&mut self, local_agent: String)[src]

An alias for [local_agent_prepend] for backwards compatibility

pub fn local_agent_prepend(&mut self, local_agent: String)[src]

Sets a local agent that is prepended to the default HTTP User-Agent used by Rusoto.

pub fn local_agent_append(&mut self, local_agent: String)[src]

Sets a local agent that is appended to the default HTTP User-Agent used by Rusoto.

impl<C> HttpClient<C> where
    C: Connect + Clone + Send + Sync
[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 + Clone + Send + Sync + 'static, 
[src]

Auto Trait Implementations

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

impl<C> Send for HttpClient<C> where
    C: Send
[src]

impl<C> Sync for HttpClient<C> where
    C: Sync
[src]

impl<C> Unpin for HttpClient<C> where
    C: Unpin
[src]

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

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.