pub struct IcMetricObservation {
pub timestamp_unix_secs: u64,
pub value: String,
}Expand description
IcMetricObservation
One raw timestamp and value returned by the Dashboard Metrics API.
Fields§
§timestamp_unix_secs: u64Observation timestamp as Unix seconds.
value: StringRaw value string returned by the Dashboard.
Trait Implementations§
Source§impl Clone for IcMetricObservation
impl Clone for IcMetricObservation
Source§fn clone(&self) -> IcMetricObservation
fn clone(&self) -> IcMetricObservation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IcMetricObservation
impl Debug for IcMetricObservation
impl Eq for IcMetricObservation
Source§impl PartialEq for IcMetricObservation
impl PartialEq for IcMetricObservation
Source§impl Serialize for IcMetricObservation
impl Serialize for IcMetricObservation
impl StructuralPartialEq for IcMetricObservation
Auto Trait Implementations§
impl Freeze for IcMetricObservation
impl RefUnwindSafe for IcMetricObservation
impl Send for IcMetricObservation
impl Sync for IcMetricObservation
impl Unpin for IcMetricObservation
impl UnsafeUnpin for IcMetricObservation
impl UnwindSafe for IcMetricObservation
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