Trait IntoAsyncService

Source
pub trait IntoAsyncService<M> {
    type Service;

    // Required method
    fn into_async_service(self) -> Self::Service;
}

Required Associated Types§

Required Methods§

Implementors§

Source§

impl<Request, Response, M, Sys> IntoAsyncService<AsAsyncService<(Request, Response, M)>> for Sys
where Sys: IntoSystem<Request, Response, M>, Request: 'static + Send, Response: 'static + Send,