Trait actix_service::IntoService[][src]

pub trait IntoService<S, Req> where
    S: Service<Req>, 
{ fn into_service(self) -> S; }

Trait for types that can be converted to a Service

Required methods

fn into_service(self) -> S[src]

Convert to a Service

Loading content...

Implementors

impl<S, Req> IntoService<S, Req> for S where
    S: Service<Req>, 
[src]

Loading content...