pub trait TemperatureClient {
// Required method
fn callback(&self, value: Result<i32, ErrorCode>);
}
Expand description
Client for receiving temperature readings.
pub trait TemperatureClient {
// Required method
fn callback(&self, value: Result<i32, ErrorCode>);
}
Client for receiving temperature readings.