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§
sourcefn into_hyper_service(self) -> HyperServiceWrapper<S>
fn into_hyper_service(self) -> HyperServiceWrapper<S>
Convert a tower_async::Service into a hyper::service::Service.