pub struct TimerMetrics {
pub scheduled: u64,
pub fired: u64,
pub cancelled: u64,
pub rescheduled: u64,
pub drained: u64,
pub ticks: u64,
pub cascade_events: u64,
}Fields§
§scheduled: u64§fired: u64§cancelled: u64§rescheduled: u64§drained: u64§ticks: u64§cascade_events: u64Trait Implementations§
Source§impl Clone for TimerMetrics
impl Clone for TimerMetrics
Source§fn clone(&self) -> TimerMetrics
fn clone(&self) -> TimerMetrics
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 moreimpl Copy for TimerMetrics
Source§impl Debug for TimerMetrics
impl Debug for TimerMetrics
Source§impl Default for TimerMetrics
impl Default for TimerMetrics
Source§fn default() -> TimerMetrics
fn default() -> TimerMetrics
Returns the “default value” for a type. Read more
impl Eq for TimerMetrics
Source§impl PartialEq for TimerMetrics
impl PartialEq for TimerMetrics
impl StructuralPartialEq for TimerMetrics
Auto Trait Implementations§
impl Freeze for TimerMetrics
impl RefUnwindSafe for TimerMetrics
impl Send for TimerMetrics
impl Sync for TimerMetrics
impl Unpin for TimerMetrics
impl UnsafeUnpin for TimerMetrics
impl UnwindSafe for TimerMetrics
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