#[repr(u8)]pub enum OpMetricsEvent {
Dispatched = 0,
Completed = 1,
CompletedAsync = 2,
Error = 3,
ErrorAsync = 4,
}
Expand description
The type of op metrics event.
Variants§
Dispatched = 0
Entered an op dispatch.
Completed = 1
Left an op synchronously.
CompletedAsync = 2
Left an op asynchronously.
Error = 3
Left an op synchronously with an exception.
ErrorAsync = 4
Left an op asynchronously with an exception.
Trait Implementations§
Source§impl Clone for OpMetricsEvent
impl Clone for OpMetricsEvent
Source§fn clone(&self) -> OpMetricsEvent
fn clone(&self) -> OpMetricsEvent
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 OpMetricsEvent
impl Debug for OpMetricsEvent
Source§impl PartialEq for OpMetricsEvent
impl PartialEq for OpMetricsEvent
impl Copy for OpMetricsEvent
impl Eq for OpMetricsEvent
impl StructuralPartialEq for OpMetricsEvent
Auto Trait Implementations§
impl Freeze for OpMetricsEvent
impl RefUnwindSafe for OpMetricsEvent
impl Send for OpMetricsEvent
impl Sync for OpMetricsEvent
impl Unpin for OpMetricsEvent
impl UnwindSafe for OpMetricsEvent
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