Struct actix_utils::keepalive::KeepAlive [−][src]
pub struct KeepAlive<R, E, F> { /* fields omitted */ }
Implementations
Trait Implementations
type Request = R
type Request = R
Requests handled by the created services.
type Response = R
type Response = R
Responses given by the created services.
type Error = E
type Error = E
Errors produced by the created services.
type InitError = Infallible
type InitError = Infallible
Errors potentially raised while building a service.
type Service = KeepAliveService<R, E, F>
type Service = KeepAliveService<R, E, F>
The kind of Service
created by this factory.
Create and return a new service asynchronously.
Map this service’s output to a different type, returning a new service of the resulting type. Read more
Map this service’s error to a different error, returning a new service.
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, E> where
F: Fn(Self::InitError) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, E> where
F: Fn(Self::InitError) -> E + Clone,
Map this factory’s init error to a different error, returning a new service.
Auto Trait Implementations
impl<R, E, F> !RefUnwindSafe for KeepAlive<R, E, F>
impl<R, E, F> !UnwindSafe for KeepAlive<R, E, F>
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert Self
to a ServiceFactory