pub trait SerdeMethod<'a, ARGS: 'a, RET: 'a, T = ()> {
// Required method
fn into_boxed(self) -> Arc<RpcMethod<T>> ⓘ;
}Expand description
Trait for closures which can be converted to RPC method
pub trait SerdeMethod<'a, ARGS: 'a, RET: 'a, T = ()> {
// Required method
fn into_boxed(self) -> Arc<RpcMethod<T>> ⓘ;
}Trait for closures which can be converted to RPC method