pub struct BoardV1Metrics {
pub id: i32,
pub version: i32,
pub uptime: i32,
pub temperature: i32,
pub init_temperature: i32,
pub settings: String,
pub timeout: i32,
pub frames: Option<i32>,
pub is_responding: Option<bool>,
}
Fields§
§id: i32
§version: i32
§uptime: i32
§temperature: i32
§init_temperature: i32
§settings: String
§timeout: i32
§frames: Option<i32>
§is_responding: Option<bool>
Trait Implementations§
Source§impl Clone for BoardV1Metrics
impl Clone for BoardV1Metrics
Source§fn clone(&self) -> BoardV1Metrics
fn clone(&self) -> BoardV1Metrics
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BoardV1Metrics
impl Debug for BoardV1Metrics
Source§impl<'de> Deserialize<'de> for BoardV1Metrics
impl<'de> Deserialize<'de> for BoardV1Metrics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BoardV1Metrics
impl PartialEq for BoardV1Metrics
impl StructuralPartialEq for BoardV1Metrics
Auto Trait Implementations§
impl Freeze for BoardV1Metrics
impl RefUnwindSafe for BoardV1Metrics
impl Send for BoardV1Metrics
impl Sync for BoardV1Metrics
impl Unpin for BoardV1Metrics
impl UnwindSafe for BoardV1Metrics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more