Trait jsonrpc_core::commander::SyncMethodCommand [] [src]

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

Should be used to handle single synchronous method call.

Required Methods

Execute synchronous method

Implementors