pub trait RpcMethod {
    type Params;
    type Response;

    fn as_str<'a>(&'a self) -> &'a str;
}

Required Associated Types

Required Methods

Implementors