Struct ntex::http::HttpService
source · pub struct HttpService<F, S, B, C1 = DefaultControlService, C2 = DefaultControlService> { /* private fields */ }Expand description
ServiceFactory HTTP1.1/HTTP2 transport implementation
Implementations§
source§impl<F, S, B, C1, C2> HttpService<Layer<SslFilter, F>, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<Layer<SslFilter, F>, S::Error>, Response = ControlAck> + 'static,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck> + 'static,
C2::Error: Error,
C2::InitError: Debug,
impl<F, S, B, C1, C2> HttpService<Layer<SslFilter, F>, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<Layer<SslFilter, F>, S::Error>, Response = ControlAck> + 'static,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck> + 'static,
C2::Error: Error,
C2::InitError: Debug,
sourcepub fn openssl(
self,
acceptor: SslAcceptor,
) -> impl ServiceFactory<Io<F>, Response = (), Error = SslError<DispatchError>, InitError = ()>
pub fn openssl( self, acceptor: SslAcceptor, ) -> impl ServiceFactory<Io<F>, Response = (), Error = SslError<DispatchError>, InitError = ()>
Create openssl based service
source§impl<F, S, B, C1, C2> HttpService<Layer<TlsServerFilter, F>, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<Layer<TlsServerFilter, F>, S::Error>, Response = ControlAck> + 'static,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck> + 'static,
C2::Error: Error,
C2::InitError: Debug,
impl<F, S, B, C1, C2> HttpService<Layer<TlsServerFilter, F>, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<Layer<TlsServerFilter, F>, S::Error>, Response = ControlAck> + 'static,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck> + 'static,
C2::Error: Error,
C2::InitError: Debug,
sourcepub fn rustls(
self,
config: ServerConfig,
) -> impl ServiceFactory<Io<F>, Response = (), Error = SslError<DispatchError>, InitError = ()>
pub fn rustls( self, config: ServerConfig, ) -> impl ServiceFactory<Io<F>, Response = (), Error = SslError<DispatchError>, InitError = ()>
Create openssl based service
source§impl<F, S, B> HttpService<F, S, B>where
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
impl<F, S, B> HttpService<F, S, B>where
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
sourcepub fn build() -> HttpServiceBuilder<F, S>
pub fn build() -> HttpServiceBuilder<F, S>
Create builder for HttpService instance.
source§impl<F, S, B> HttpService<F, S, B>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
impl<F, S, B> HttpService<F, S, B>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
sourcepub fn new<U: IntoServiceFactory<S, Request>>(service: U) -> Self
pub fn new<U: IntoServiceFactory<S, Request>>(service: U) -> Self
Create new HttpService instance.
source§impl<F, S, B, C1, C2> HttpService<F, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<F, S::Error>, Response = ControlAck>,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck>,
C2::Error: Error,
C2::InitError: Debug,
impl<F, S, B, C1, C2> HttpService<F, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<F, S::Error>, Response = ControlAck>,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck>,
C2::Error: Error,
C2::InitError: Debug,
sourcepub fn h1_control<CT>(self, control: CT) -> HttpService<F, S, B, CT, C2>where
CT: ServiceFactory<Control<F, S::Error>, Response = ControlAck>,
CT::Error: Error,
CT::InitError: Debug,
pub fn h1_control<CT>(self, control: CT) -> HttpService<F, S, B, CT, C2>where
CT: ServiceFactory<Control<F, S::Error>, Response = ControlAck>,
CT::Error: Error,
CT::InitError: Debug,
Provide http/1 control service.
sourcepub fn h2_control<CT>(self, control: CT) -> HttpService<F, S, B, C1, CT>where
CT: ServiceFactory<Control<H2Error>, Response = ControlAck>,
CT::Error: Error,
CT::InitError: Debug,
pub fn h2_control<CT>(self, control: CT) -> HttpService<F, S, B, C1, CT>where
CT: ServiceFactory<Control<H2Error>, Response = ControlAck>,
CT::Error: Error,
CT::InitError: Debug,
Provide http/1 control service.
Trait Implementations§
source§impl<F, S, B, C1, C2> ServiceFactory<Io<F>> for HttpService<F, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<F, S::Error>, Response = ControlAck> + 'static,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck> + 'static,
C2::Error: Error,
C2::InitError: Debug,
impl<F, S, B, C1, C2> ServiceFactory<Io<F>> for HttpService<F, S, B, C1, C2>where
F: Filter,
S: ServiceFactory<Request> + 'static,
S::Error: ResponseError,
S::InitError: Debug,
S::Response: Into<Response<B>>,
B: MessageBody,
C1: ServiceFactory<Control<F, S::Error>, Response = ControlAck> + 'static,
C1::Error: Error,
C1::InitError: Debug,
C2: ServiceFactory<Control<H2Error>, Response = ControlAck> + 'static,
C2::Error: Error,
C2::InitError: Debug,
§type Error = DispatchError
type Error = DispatchError
Errors produced by the created services.
§type Service = HttpServiceHandler<F, <S as ServiceFactory<Request>>::Service, B, <C1 as ServiceFactory<Control<F, <S as ServiceFactory<Request>>::Error>>>::Service, C2>
type Service = HttpServiceHandler<F, <S as ServiceFactory<Request>>::Service, B, <C1 as ServiceFactory<Control<F, <S as ServiceFactory<Request>>::Error>>>::Service, C2>
The kind of
Service created by this factory.source§async fn create(&self, _: ()) -> Result<Self::Service, Self::InitError>
async fn create(&self, _: ()) -> Result<Self::Service, Self::InitError>
Create and return a new service value asynchronously.
source§async fn pipeline(
&self,
cfg: Cfg,
) -> Result<Pipeline<Self::Service>, Self::InitError>where
Self: Sized,
async fn pipeline(
&self,
cfg: Cfg,
) -> Result<Pipeline<Self::Service>, Self::InitError>where
Self: Sized,
Create and return a new service value asynchronously and wrap into a container
source§fn map<F, Res>(
self,
f: F,
) -> ServiceChainFactory<MapFactory<Self, F, Req, Res, Cfg>, Req, Cfg>
fn map<F, Res>( self, f: F, ) -> ServiceChainFactory<MapFactory<Self, F, Req, Res, Cfg>, Req, Cfg>
Map this service’s output to a different type, returning a new service
of the resulting type.
source§fn map_err<F, E>(
self,
f: F,
) -> ServiceChainFactory<MapErrFactory<Self, Req, Cfg, F, E>, Req, Cfg>
fn map_err<F, E>( self, f: F, ) -> ServiceChainFactory<MapErrFactory<Self, Req, Cfg, F, E>, Req, Cfg>
Map this service’s error to a different error, returning a new service.
source§fn map_init_err<F, E>(
self,
f: F,
) -> ServiceChainFactory<MapInitErr<Self, Req, Cfg, F, E>, Req, Cfg>
fn map_init_err<F, E>( self, f: F, ) -> ServiceChainFactory<MapInitErr<Self, Req, Cfg, F, E>, Req, Cfg>
Map this factory’s init error to a different error, returning a new service.
Auto Trait Implementations§
impl<F, S, B, C1, C2> Freeze for HttpService<F, S, B, C1, C2>
impl<F, S, B, C1 = DefaultControlService, C2 = DefaultControlService> !RefUnwindSafe for HttpService<F, S, B, C1, C2>
impl<F, S, B, C1 = DefaultControlService, C2 = DefaultControlService> !Send for HttpService<F, S, B, C1, C2>
impl<F, S, B, C1 = DefaultControlService, C2 = DefaultControlService> !Sync for HttpService<F, S, B, C1, C2>
impl<F, S, B, C1, C2> Unpin for HttpService<F, S, B, C1, C2>
impl<F, S, B, C1 = DefaultControlService, C2 = DefaultControlService> !UnwindSafe for HttpService<F, S, B, C1, C2>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Req, Cfg> IntoServiceFactory<T, Req, Cfg> for Twhere
T: ServiceFactory<Req, Cfg>,
impl<T, Req, Cfg> IntoServiceFactory<T, Req, Cfg> for Twhere
T: ServiceFactory<Req, Cfg>,
source§fn into_factory(self) -> T
fn into_factory(self) -> T
Convert
Self to a ServiceFactory