pub trait DebugProxyInterface: Send + Sync {
type TripResponseFut: Future<Output = Result<DebugTripResult, Error>> + Send;
// Required method
fn trip(&self, index: u32) -> Self::TripResponseFut;
}Required Associated Types§
type TripResponseFut: Future<Output = Result<DebugTripResult, Error>> + Send
Required Methods§
fn trip(&self, index: u32) -> Self::TripResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".