[][src]Struct actix_http::h2::H2Service

pub struct H2Service<T, P, S, B> { /* fields omitted */ }

NewService implementation for HTTP2 transport

Methods

impl<T, P, S, B> H2Service<T, P, S, B> where
    S: NewService<Config = SrvConfig, Request = Request>,
    S::Error: Into<Error>,
    S::Response: Into<Response<B>>,
    <S::Service as Service>::Future: 'static,
    B: MessageBody + 'static, 
[src]

pub fn new<F: IntoNewService<S>>(service: F) -> Self[src]

Create new HttpService instance.

pub fn with_config<F: IntoNewService<S>>(cfg: ServiceConfig, service: F) -> Self[src]

Create new HttpService instance with config.

Trait Implementations

impl<T, P, S, B> NewService for H2Service<T, P, S, B> where
    T: IoStream,
    S: NewService<Config = SrvConfig, Request = Request>,
    S::Error: Into<Error>,
    S::Response: Into<Response<B>>,
    <S::Service as Service>::Future: 'static,
    B: MessageBody + 'static, 
[src]

type Config = SrvConfig

Service factory configuration

type Request = Io<T, P>

Requests handled by the service.

type Response = ()

Responses given by the service

type Error = DispatchError

Errors produced by the service

type InitError = S::InitError

Errors produced while building a service.

type Service = H2ServiceHandler<T, P, S::Service, B>

The Service value created by this factory

type Future = H2ServiceResponse<T, P, S, B>

The future of the Service instance.

Auto Trait Implementations

impl<T, P, S, B> Unpin for H2Service<T, P, S, B> where
    B: Unpin,
    P: Unpin,
    S: Unpin,
    T: Unpin

impl<T, P, S, B> !Sync for H2Service<T, P, S, B>

impl<T, P, S, B> !Send for H2Service<T, P, S, B>

impl<T, P, S, B> !UnwindSafe for H2Service<T, P, S, B>

impl<T, P, S, B> !RefUnwindSafe for H2Service<T, P, S, B>

Blanket Implementations

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T> IntoNewService<T> for T where
    T: NewService
[src]

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