Trait jsonrpc_core::commander::MethodCommand
[−]
[src]
pub trait MethodCommand: Send + Sync { fn execute(&self, params: Params, ready: Ready); }
Should be used to handle single asynchronous method call
Required Methods
Implementors
impl<C: SyncMethodCommand> MethodCommand for SyncMethod<C>
impl<F> MethodCommand for F where F: Fn(Params, Ready) + Sync + Send