pub trait TestDeviceProxyInterface: Send + Sync {
type LoadFirmwareResponseFut: Future<Output = Result<TestDeviceLoadFirmwareResult, Error>> + Send;
// Required method
fn load_firmware(&self, path: &str) -> Self::LoadFirmwareResponseFut;
}