pub trait SharedHyperService<R>: Service<R> + Send + Sync + 'static { }

Implementors§

source§

impl<R, T> SharedHyperService<R> for T
where T: Service<R> + Send + Sync + 'static,