pub type RawRpcResponse = (String, Receiver<String>);
Expand description
Raw response from an RPC A tuple containing:
- Call result as a
String
, - a
mpsc::UnboundedReceiver<String>
to receive future subscription results
pub type RawRpcResponse = (String, Receiver<String>);
Raw response from an RPC A tuple containing:
String
,mpsc::UnboundedReceiver<String>
to receive future subscription results