pub struct TimerMetricEntry {
pub mode: TimerMode,
pub delay_ms: u64,
pub label: String,
pub count: u64,
}Expand description
TimerMetricEntry Snapshot entry pairing a timer mode/delay with its execution count.
Fields§
§mode: TimerMode§delay_ms: u64§label: String§count: u64Trait Implementations§
Source§impl CandidType for TimerMetricEntry
impl CandidType for TimerMetricEntry
Source§impl Clone for TimerMetricEntry
impl Clone for TimerMetricEntry
Source§fn clone(&self) -> TimerMetricEntry
fn clone(&self) -> TimerMetricEntry
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 TimerMetricEntry
impl Debug for TimerMetricEntry
Source§impl<'de> Deserialize<'de> for TimerMetricEntry
impl<'de> Deserialize<'de> for TimerMetricEntry
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 TimerMetricEntry
impl RefUnwindSafe for TimerMetricEntry
impl Send for TimerMetricEntry
impl Sync for TimerMetricEntry
impl Unpin for TimerMetricEntry
impl UnwindSafe for TimerMetricEntry
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