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