pub type BoxServer = Box<dyn Server<Success = Value, RpcCallResult = Box<dyn Future<Item = Value, Error = RpcError>>, NotificationResult = Box<dyn Future<Item = (), Error = ()>>>>;Expand description
A type to store servers as trait objects.
See also AbstractServer and
ServerChain.
Aliased Typeยง
pub struct BoxServer(/* private fields */);