Struct actix_http::h1::ExpectHandler [−][src]
pub struct ExpectHandler;
Trait Implementations
Returns Ready when the service is able to process requests. Read more
impl ServiceFactory<Request<Pin<Box<dyn Stream<Item = Result<Bytes, PayloadError>> + 'static, Global>>>> for ExpectHandler
impl ServiceFactory<Request<Pin<Box<dyn Stream<Item = Result<Bytes, PayloadError>> + 'static, Global>>>> for ExpectHandlertype Service = ExpectHandler
type Service = ExpectHandlerThe kind of Service created by this factory.
Create and return a new service asynchronously.
Auto Trait Implementations
impl RefUnwindSafe for ExpectHandlerimpl Send for ExpectHandlerimpl Sync for ExpectHandlerimpl Unpin for ExpectHandlerimpl UnwindSafe for ExpectHandlerBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Convert to a Service
Convert Self to a ServiceFactory
type Output = T
type Output = TShould always be Self
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, Req, E> where
F: Fn(Self::InitError) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, Req, E> where
F: Fn(Self::InitError) -> E + Clone, Map this factory’s init error to a different error, returning a new service.
Call another service after call to this one has resolved successfully.
pub fn vzip(self) -> V