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

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

Should be used to handle single method call.

Required Methods

fn execute(&self, params: Params) -> Result<ValueError>

Implementors