Trait jsonrpc_core::commander::MethodCommand [] [src]

pub trait MethodCommand: Send + Sync {
    fn execute(&self, params: Params) -> MethodResult;
}

Should be used to handle single method call.

Required Methods

Execute this method and get result (sync / async)

Implementors