Trait follow_heating::io::temperatures::TemperatureManager
source · pub trait TemperatureManager {
// Required methods
fn retrieve_sensors<'life0, 'async_trait>(
&'life0 mut self
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn retrieve_temperatures<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<HashMap<Sensor, f32>, String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}