Type Definition tokio_jsonrpc::server::BoxServer
[−]
[src]
type BoxServer = Box<Server<Success = Value, RpcCallResult = Box<Future<Item = Value, Error = RpcError>>, NotificationResult = Box<Future<Item = (), Error = ()>>>>;
A type to store servers as trait objects.
See also AbstractServer
and
ServerChain
.