pub trait CurrentLevelProxyInterface: Send + Sync {
type UpdateResponseFut: Future<Output = Result<CurrentLevelUpdateResult, Error>> + Send;
// Required method
fn update(&self, current_level: u8) -> Self::UpdateResponseFut;
}
pub trait CurrentLevelProxyInterface: Send + Sync {
type UpdateResponseFut: Future<Output = Result<CurrentLevelUpdateResult, Error>> + Send;
// Required method
fn update(&self, current_level: u8) -> Self::UpdateResponseFut;
}