[][src]Struct hyper_timeout::TimeoutConnector

pub struct TimeoutConnector<T> { /* fields omitted */ }

A connector that enforces as connection timeout

Implementations

impl<T> TimeoutConnector<T> where
    T: Service<Uri> + Send,
    T::Response: AsyncRead + AsyncWrite + Send + Unpin,
    T::Future: Send + 'static,
    T::Error: Into<Box<dyn Error + Send + Sync>>, 
[src]

pub fn new(connector: T) -> Self[src]

Construct a new TimeoutConnector with a given connector implementing the Connect trait

impl<T> TimeoutConnector<T>[src]

pub fn set_connect_timeout(&mut self, val: Option<Duration>)[src]

Set the timeout for connecting to a URL.

Default is no timeout.

pub fn set_read_timeout(&mut self, val: Option<Duration>)[src]

Set the timeout for the response.

Default is no timeout.

pub fn set_write_timeout(&mut self, val: Option<Duration>)[src]

Set the timeout for the request.

Default is no timeout.

Trait Implementations

impl<T: Clone> Clone for TimeoutConnector<T>[src]

impl<T> Connection for TimeoutConnector<T> where
    T: AsyncRead + AsyncWrite + Connection + Service<Uri> + Send + Unpin,
    T::Response: AsyncRead + AsyncWrite + Send + Unpin,
    T::Future: Send + 'static,
    T::Error: Into<Box<dyn Error + Send + Sync>>, 
[src]

impl<T: Debug> Debug for TimeoutConnector<T>[src]

impl<T> Service<Uri> for TimeoutConnector<T> where
    T: Service<Uri> + Send,
    T::Response: AsyncRead + AsyncWrite + Connection + Send + Unpin,
    T::Future: Send + 'static,
    T::Error: Into<Box<dyn Error + Send + Sync>>, 
[src]

type Response = Pin<Box<TimeoutConnectorStream<T::Response>>>

Responses given by the service.

type Error = Box<dyn Error + Send + Sync>

Errors produced by the service.

type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send>>

The future response value.

Auto Trait Implementations

impl<T> RefUnwindSafe for TimeoutConnector<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for TimeoutConnector<T> where
    T: Send
[src]

impl<T> Sync for TimeoutConnector<T> where
    T: Sync
[src]

impl<T> Unpin for TimeoutConnector<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for TimeoutConnector<T> where
    T: UnwindSafe
[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> 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.