pub trait ElementRunnerProxyInterface: Send + Sync {
type SetLevelResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_level(&self, level: u8) -> Self::SetLevelResponseFut;
}
pub trait ElementRunnerProxyInterface: Send + Sync {
type SetLevelResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_level(&self, level: u8) -> Self::SetLevelResponseFut;
}