pub enum OperationEventPhase {
Started,
Succeeded,
Failed,
}Expand description
High-level lifecycle phase for operation-level observability hooks.
Variants§
Started
The operation started.
Succeeded
The operation finished successfully.
Failed
The operation finished with an error.
Trait Implementations§
Source§impl Clone for OperationEventPhase
impl Clone for OperationEventPhase
Source§fn clone(&self) -> OperationEventPhase
fn clone(&self) -> OperationEventPhase
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 OperationEventPhase
impl Debug for OperationEventPhase
Source§impl PartialEq for OperationEventPhase
impl PartialEq for OperationEventPhase
impl Copy for OperationEventPhase
impl Eq for OperationEventPhase
impl StructuralPartialEq for OperationEventPhase
Auto Trait Implementations§
impl Freeze for OperationEventPhase
impl RefUnwindSafe for OperationEventPhase
impl Send for OperationEventPhase
impl Sync for OperationEventPhase
impl Unpin for OperationEventPhase
impl UnsafeUnpin for OperationEventPhase
impl UnwindSafe for OperationEventPhase
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