pub trait DeviceProxyInterface: Send + Sync {
    type GetTemperatureCelsiusResponseFut: Future<Output = Result<(i32, f32), Error>> + Send;

    // Required method
    fn get_temperature_celsius(&self) -> Self::GetTemperatureCelsiusResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§