pub trait TowerHyperServiceExt<S, Request> {
    // Required method
    fn into_hyper_service(self) -> HyperServiceWrapper<S>;
}
Expand description

Trait to convert a tower_async::Service into a hyper::service::Service.

Required Methods§

Implementors§

source§

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