pub trait DebugProxyInterface: Send + Sync {
type LogStackTraceResponseFut: Future<Output = Result<DebugLogStackTraceResult, Error>> + Send;
// Required method
fn log_stack_trace(
&self,
node_token: Event,
) -> Self::LogStackTraceResponseFut;
}