Struct actix_http::h1::ExpectHandler [−][src]
Trait Implementations
impl Service<Request<Pin<Box<dyn Stream<Item = Result<Bytes, PayloadError>> + 'static, Global>>>> for ExpectHandler[src]
type Response = Request
Responses given by the service.
type Error = Error
Errors produced by the service when polling readiness or executing call.
type Future = Ready<Result<Self::Response, Self::Error>>
The future response value.
fn poll_ready(&self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>>[src]
fn call(&self, req: Request) -> Self::Future[src]
impl ServiceFactory<Request<Pin<Box<dyn Stream<Item = Result<Bytes, PayloadError>> + 'static, Global>>>> for ExpectHandler[src]
type Response = Request
Responses given by the created services.
type Error = Error
Errors produced by the created services.
type Config = ()
Service factory configuration.
type Service = ExpectHandler
The kind of Service created by this factory.
type InitError = Error
Errors potentially raised while building a service.
type Future = Ready<Result<Self::Service, Self::InitError>>
The future of the Service instance.
fn new_service(&self, _: Self::Config) -> Self::Future[src]
Auto Trait Implementations
impl RefUnwindSafe for ExpectHandler[src]
impl Send for ExpectHandler[src]
impl Sync for ExpectHandler[src]
impl Unpin for ExpectHandler[src]
impl UnwindSafe for ExpectHandler[src]
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> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<S, Req> IntoService<S, Req> for S where
S: Service<Req>, [src]
S: Service<Req>,
pub fn into_service(self) -> S[src]
impl<SF, Req> IntoServiceFactory<SF, Req> for SF where
SF: ServiceFactory<Req>, [src]
SF: ServiceFactory<Req>,
pub fn into_factory(self) -> SF[src]
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<S, Req> ServiceExt<Req> for S where
S: Service<Req>, [src]
S: Service<Req>,
pub fn map<F, R>(self, f: F) -> Map<Self, F, Req, R> where
F: FnMut(Self::Response) -> R, [src]
F: FnMut(Self::Response) -> R,
pub fn map_err<F, E>(self, f: F) -> MapErr<Self, Req, F, E> where
F: Fn(Self::Error) -> E, [src]
F: Fn(Self::Error) -> E,
impl<S, Req> ServiceFactoryExt<Req> for S where
S: ServiceFactory<Req>, [src]
S: ServiceFactory<Req>,
pub fn map<F, R>(self, f: F) -> MapServiceFactory<Self, F, Req, R> where
F: FnMut(Self::Response) -> R + Clone, [src]
F: FnMut(Self::Response) -> R + Clone,
pub fn map_err<F, E>(self, f: F) -> MapErrServiceFactory<Self, Req, F, E> where
F: Fn(Self::Error) -> E + Clone, [src]
F: Fn(Self::Error) -> E + Clone,
pub fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, Req, E> where
F: Fn(Self::InitError) -> E + Clone, [src]
F: Fn(Self::InitError) -> E + Clone,
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,