Struct actix_utils::timeout::Timeout [−][src]
Applies a timeout to requests.
Implementations
impl<E> Timeout<E>[src]
Trait Implementations
impl<E> Clone for Timeout<E>[src]
fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<E: Debug> Debug for Timeout<E>[src]
impl<S, E, Req> Transform<S, Req> for Timeout<E> where
S: Service<Req>, [src]
S: Service<Req>,
type Response = S::Response
Responses given by the service.
type Error = TimeoutError<S::Error>
Errors produced by the service.
type Transform = TimeoutService<S, Req>
The TransformService value created by this factory
type InitError = E
Errors produced while building a transform service.
type Future = TimeoutFuture<Self::Transform, Self::InitError>
The future response value.
fn new_transform(&self, service: S) -> Self::Future[src]
pub fn map_init_err<F, E>(self, f: F) -> TransformMapInitErr<Self, S, Req, F, E> where
F: Fn(Self::InitError) -> E + Clone, [src]
F: Fn(Self::InitError) -> E + Clone,
Auto Trait Implementations
impl<E> RefUnwindSafe for Timeout<E> where
E: RefUnwindSafe, [src]
E: RefUnwindSafe,
impl<E> Send for Timeout<E> where
E: Send, [src]
E: Send,
impl<E> Sync for Timeout<E> where
E: Sync, [src]
E: Sync,
impl<E> Unpin for Timeout<E> where
E: Unpin, [src]
E: Unpin,
impl<E> UnwindSafe for Timeout<E> where
E: UnwindSafe, [src]
E: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,