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.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".