Enum jsonrpsee_core::middleware::MethodKind
source · pub enum MethodKind {
Subscription,
Unsubscription,
MethodCall,
Unknown,
}
Expand description
The type JSON-RPC v2 call, it can be a subscription, method call or unknown.
Variants§
Subscription
Subscription Call.
Unsubscription
Unsubscription Call.
MethodCall
Method call.
Unknown
Unknown method.
Trait Implementations§
source§impl Clone for MethodKind
impl Clone for MethodKind
source§fn clone(&self) -> MethodKind
fn clone(&self) -> MethodKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more