pub trait RpcServer: Send + Sync {
// Required methods
fn invoke(&self, msg: KrpcMsg) -> KrpcFuture<KrpcMsg>;
fn get_info(&self) -> (&str, &str, Option<&str>, Vec<String>);
}
pub trait RpcServer: Send + Sync {
// Required methods
fn invoke(&self, msg: KrpcMsg) -> KrpcFuture<KrpcMsg>;
fn get_info(&self) -> (&str, &str, Option<&str>, Vec<String>);
}