Trait JsonRPCSubscriptionMsgT
pub trait JsonRPCSubscriptionMsgT: Send + Clone {
// Required methods
fn method() -> &'static str;
fn unsubscribe_method() -> &'static str;
fn into_params(self) -> impl ToRpcParams + Send + 'static;
}Required Methods§
fn method() -> &'static str
fn unsubscribe_method() -> &'static str
fn into_params(self) -> impl ToRpcParams + Send + 'static
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.