pub struct Datapoint {
pub hist_id: i64,
pub timestamp: i64,
pub value: f64,
}Expand description
One historic datapoint of the charts capability.
Fields§
§hist_id: i64History series id.
timestamp: i64Epoch MILLISECONDS (live: 1787346747022).
value: f64cpu series: PERCENT; memory series: bytes.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Datapoint
impl<'de> Deserialize<'de> for Datapoint
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
impl StructuralPartialEq for Datapoint
Auto Trait Implementations§
impl Freeze for Datapoint
impl RefUnwindSafe for Datapoint
impl Send for Datapoint
impl Sync for Datapoint
impl Unpin for Datapoint
impl UnsafeUnpin for Datapoint
impl UnwindSafe for Datapoint
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