pub trait JsonRpcTarget: Target {
    // Required methods
    fn method_name(&self) -> &'static str;
    fn params(&self) -> Vec<Value>;
}

Required Methods§

source

fn method_name(&self) -> &'static str

source

fn params(&self) -> Vec<Value>

Implementors§