Struct tetsy_fetch::client::Client[][src]

pub struct Client { /* fields omitted */ }

An implementation of Fetch using a hyper client.

Implementations

impl Client[src]

pub fn new(num_dns_threads: usize) -> Result<Self, Error>[src]

Create a new fetch client.

Trait Implementations

impl Clone for Client[src]

impl Debug for Client[src]

impl Drop for Client[src]

impl Fetch for Client[src]

type Result = Box<dyn Future<Item = Response, Error = Error> + Send + 'static>

The result future.

fn get(&self, url: &str, abort: Abort) -> Self::Result[src]

Get content from some URL.

fn post(&self, url: &str, abort: Abort) -> Self::Result[src]

Post content to some URL.

Auto Trait Implementations

impl !RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl !UnwindSafe for Client

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.