[][src]Struct actix_service::boxed::BoxedNewService

pub struct BoxedNewService<C, Req, Res, Err, InitErr>(_);

Trait Implementations

impl<C, Req, Res, Err, InitErr> NewService for BoxedNewService<C, Req, Res, Err, InitErr> where
    Req: 'static,
    Res: 'static,
    Err: 'static,
    InitErr: 'static, 
[src]

type Request = Req

Requests handled by the service.

type Response = Res

Responses given by the service

type Error = Err

Errors produced by the service

type InitError = InitErr

Errors produced while building a service.

type Config = C

Service factory configuration

type Service = BoxedService<Req, Res, Err>

The Service value created by this factory

type Future = Box<dyn Future<Item = Self::Service, Error = Self::InitError>>

The future of the Service instance.

Auto Trait Implementations

impl<C, Req, Res, Err, InitErr> !RefUnwindSafe for BoxedNewService<C, Req, Res, Err, InitErr>

impl<C, Req, Res, Err, InitErr> !Send for BoxedNewService<C, Req, Res, Err, InitErr>

impl<C, Req, Res, Err, InitErr> !Sync for BoxedNewService<C, Req, Res, Err, InitErr>

impl<C, Req, Res, Err, InitErr> Unpin for BoxedNewService<C, Req, Res, Err, InitErr>

impl<C, Req, Res, Err, InitErr> !UnwindSafe for BoxedNewService<C, Req, Res, Err, InitErr>

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoNewService<T> for T where
    T: NewService
[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.