pub trait DebugProxyInterface: Send + Sync {
type TripResponseFut: Future<Output = Result<DebugTripResult, Error>> + Send;
// Required method
fn trip(&self, index: u32) -> Self::TripResponseFut;
}pub trait DebugProxyInterface: Send + Sync {
type TripResponseFut: Future<Output = Result<DebugTripResult, Error>> + Send;
// Required method
fn trip(&self, index: u32) -> Self::TripResponseFut;
}