pub trait RpcMethod: DeserMethod {
type Output: Send + Serialize + 'static;
type Update: Send + Serialize + 'static;
}
Expand description
A method that can be invoked from the RPC system.
Every RpcMethod automatically implements Method
.
pub trait RpcMethod: DeserMethod {
type Output: Send + Serialize + 'static;
type Update: Send + Serialize + 'static;
}
A method that can be invoked from the RPC system.
Every RpcMethod automatically implements Method
.