pub trait AsyncServiceExt<Request>: Service<Request> {
    // Provided method
    fn into_async(self) -> AsyncServiceWrapper<Self>
       where Self: Sized { ... }
}
Expand description

Extension for a tower::Service to turn it into an async Service.

Provided Methods§

Implementors§

source§

impl<S, Request> AsyncServiceExt<Request> for Swhere S: Service<Request>,