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

Execute asynchronous method

Implementors