pub trait DebugProxyInterface: Send + Sync {
type MessageResponseFut: Future<Output = Result<DebugMessageResult, Error>> + Send;
// Required method
fn message(
&self,
node_name: &str,
command: &str,
args: &[String],
) -> Self::MessageResponseFut;
}