Type Alias mesh::rpc::FailableRpc
source · pub type FailableRpc<I, R> = Rpc<I, Result<R, RemoteError>>;
Expand description
An RPC message with a failable result.
Aliased Type§
struct FailableRpc<I, R>(pub I, pub OneshotSender<Result<R, RemoteError>>);
Fields§
§0: I
§1: OneshotSender<Result<R, RemoteError>>