Struct actix_http::h1::H1Service[][src]

pub struct H1Service<T, S, B, X = ExpectHandler, U = UpgradeHandler> { /* fields omitted */ }

ServiceFactory implementation for HTTP1 transport

Implementations

impl<S, B, X, U> H1Service<TlsStream<TcpStream>, S, B, X, U> where
    S: ServiceFactory<Request, Config = ()>,
    S::Error: Into<Error>,
    S::InitError: Debug,
    S::Response: Into<Response<B>>,
    B: MessageBody,
    X: ServiceFactory<Request, Config = (), Response = Request>,
    X::Error: Into<Error>,
    X::InitError: Debug,
    U: ServiceFactory<(Request, Framed<TlsStream<TcpStream>, Codec>), Config = (), Response = ()>,
    U::Error: Display + Into<Error>,
    U::InitError: Debug
[src]

pub fn openssl(
    self,
    acceptor: SslAcceptor
) -> impl ServiceFactory<TcpStream, Config = (), Response = (), Error = TlsError<SslError, DispatchError>, InitError = ()>
[src]

Create openssl based service

impl<S, B, X, U> H1Service<TlsStream<TcpStream>, S, B, X, U> where
    S: ServiceFactory<Request, Config = ()>,
    S::Error: Into<Error>,
    S::InitError: Debug,
    S::Response: Into<Response<B>>,
    B: MessageBody,
    X: ServiceFactory<Request, Config = (), Response = Request>,
    X::Error: Into<Error>,
    X::InitError: Debug,
    U: ServiceFactory<(Request, Framed<TlsStream<TcpStream>, Codec>), Config = (), Response = ()>,
    U::Error: Display + Into<Error>,
    U::InitError: Debug
[src]

pub fn rustls(
    self,
    config: ServerConfig
) -> impl ServiceFactory<TcpStream, Config = (), Response = (), Error = TlsError<Error, DispatchError>, InitError = ()>
[src]

Create rustls based service

impl<S, B, X, U> H1Service<TcpStream, S, B, X, U> where
    S: ServiceFactory<Request, Config = ()>,
    S::Error: Into<Error>,
    S::InitError: Debug,
    S::Response: Into<Response<B>>,
    B: MessageBody,
    X: ServiceFactory<Request, Config = (), Response = Request>,
    X::Error: Into<Error>,
    X::InitError: Debug,
    U: ServiceFactory<(Request, Framed<TcpStream, Codec>), Config = (), Response = ()>,
    U::Error: Display + Into<Error>,
    U::InitError: Debug
[src]

pub fn tcp(
    self
) -> impl ServiceFactory<TcpStream, Config = (), Response = (), Error = DispatchError, InitError = ()>
[src]

Create simple tcp stream service

impl<T, S, B, X, U> H1Service<T, S, B, X, U> where
    S: ServiceFactory<Request, Config = ()>,
    S::Error: Into<Error>,
    S::Response: Into<Response<B>>,
    S::InitError: Debug,
    B: MessageBody
[src]

pub fn expect<X1>(self, expect: X1) -> H1Service<T, S, B, X1, U> where
    X1: ServiceFactory<Request, Response = Request>,
    X1::Error: Into<Error>,
    X1::InitError: Debug
[src]

pub fn upgrade<U1>(self, upgrade: Option<U1>) -> H1Service<T, S, B, X, U1> where
    U1: ServiceFactory<(Request, Framed<T, Codec>), Response = ()>,
    U1::Error: Display,
    U1::InitError: Debug
[src]

Trait Implementations

impl<T, S, B, X, U> ServiceFactory<(T, Option<SocketAddr>)> for H1Service<T, S, B, X, U> where
    T: AsyncRead + AsyncWrite + Unpin,
    S: ServiceFactory<Request, Config = ()>,
    S::Error: Into<Error>,
    S::Response: Into<Response<B>>,
    S::InitError: Debug,
    B: MessageBody,
    X: ServiceFactory<Request, Config = (), Response = Request>,
    X::Error: Into<Error>,
    X::InitError: Debug,
    U: ServiceFactory<(Request, Framed<T, Codec>), Config = (), Response = ()>,
    U::Error: Display + Into<Error>,
    U::InitError: Debug
[src]

type Response = ()

Responses given by the created services.

type Error = DispatchError

Errors produced by the created services.

type Config = ()

Service factory configuration.

type Service = H1ServiceHandler<T, S::Service, B, X::Service, U::Service>

The kind of Service created by this factory.

type InitError = ()

Errors potentially raised while building a service.

type Future = H1ServiceResponse<T, S, B, X, U>

The future of the Service instance.

Auto Trait Implementations

impl<T, S, B, X = ExpectHandler, U = UpgradeHandler> !RefUnwindSafe for H1Service<T, S, B, X, U>

impl<T, S, B, X = ExpectHandler, U = UpgradeHandler> !Send for H1Service<T, S, B, X, U>

impl<T, S, B, X = ExpectHandler, U = UpgradeHandler> !Sync for H1Service<T, S, B, X, U>

impl<T, S, B, X, U> Unpin for H1Service<T, S, B, X, U> where
    B: Unpin,
    S: Unpin,
    U: Unpin,
    X: Unpin

impl<T, S, B, X = ExpectHandler, U = UpgradeHandler> !UnwindSafe for H1Service<T, S, B, X, U>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<SF, Req> IntoServiceFactory<SF, Req> for SF where
    SF: ServiceFactory<Req>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<S, Req> ServiceFactoryExt<Req> for S where
    S: ServiceFactory<Req>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,