cuprate_p2p_core

Trait ProtocolRequestHandler

Source
pub trait ProtocolRequestHandler:
    Service<ProtocolRequest, Response = ProtocolResponse, Error = BoxError, Future: Send + 'static>
    + Send
    + 'static { }

Implementors§

Source§

impl<T> ProtocolRequestHandler for T
where T: Service<ProtocolRequest, Response = ProtocolResponse, Error = BoxError, Future: Send + 'static> + Send + 'static,