pub struct CpuHistoryPoint {
pub t: i64,
pub cpu: f64,
}Fields§
§t: i64§cpu: f64Trait Implementations§
Source§impl Clone for CpuHistoryPoint
impl Clone for CpuHistoryPoint
Source§fn clone(&self) -> CpuHistoryPoint
fn clone(&self) -> CpuHistoryPoint
Returns a duplicate 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 CpuHistoryPoint
impl Debug for CpuHistoryPoint
Source§impl<'de> Deserialize<'de> for CpuHistoryPoint
impl<'de> Deserialize<'de> for CpuHistoryPoint
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
Auto Trait Implementations§
impl Freeze for CpuHistoryPoint
impl RefUnwindSafe for CpuHistoryPoint
impl Send for CpuHistoryPoint
impl Sync for CpuHistoryPoint
impl Unpin for CpuHistoryPoint
impl UnsafeUnpin for CpuHistoryPoint
impl UnwindSafe for CpuHistoryPoint
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