ProtocolRequestHandlerMaker

Trait ProtocolRequestHandlerMaker 

Source
pub trait ProtocolRequestHandlerMaker<Z: NetworkZone>:
    Service<PeerInformation<Z::Addr>, Error = BoxError, Response: ProtocolRequestHandler, Future: Send + 'static>
    + Send
    + 'static { }

Implementors§

Source§

impl<T, Z: NetworkZone> ProtocolRequestHandlerMaker<Z> for T
where T: Service<PeerInformation<Z::Addr>, Error = BoxError, Response: ProtocolRequestHandler, Future: Send + 'static> + Send + 'static,