SharedHyperService

Trait SharedHyperService 

Source
pub trait SharedHyperService:
    Service<SgRequest, Response = SgResponse, Error = Infallible, Future = BoxFuture<'static, Result<SgResponse, Infallible>>>
    + Send
    + Sync
    + 'static { }

Implementors§

Source§

impl<T> SharedHyperService for T
where T: Service<SgRequest, Response = SgResponse, Error = Infallible, Future = BoxFuture<'static, Result<SgResponse, Infallible>>> + Send + Sync + 'static,