Trait BoundedService

Source
pub trait BoundedService:
    Service<JsonRpcRequest, Response = JsonRpcResponse, Error = BoxError, Future = Pin<Box<dyn Future<Output = Result<JsonRpcResponse, BoxError>> + Send>>>
    + Send
    + 'static { }

Implementors§

Source§

impl<T> BoundedService for T
where T: Service<JsonRpcRequest, Response = JsonRpcResponse, Error = BoxError, Future = Pin<Box<dyn Future<Output = Result<JsonRpcResponse, BoxError>> + Send>>> + Send + 'static,