1use super::*; 2impl EmberMug { 3 /// Retrieves the current temperature of the mug 4 pub async fn get_current_temperature(&self) -> Result<Temperature, ReadError> { 5 self.read_deserialize::<Temperature>(&crate::KnownCharacteristic::CurrentTemp) 6 .await 7 } 8}