#[non_exhaustive]pub enum RuntimeObservation {
OperationStarted(OperationStarted),
OperationFinished(OperationFinished),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
OperationStarted(OperationStarted)
OperationFinished(OperationFinished)
Trait Implementations§
Source§impl Clone for RuntimeObservation
impl Clone for RuntimeObservation
Source§fn clone(&self) -> RuntimeObservation
fn clone(&self) -> RuntimeObservation
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 RuntimeObservation
impl Debug for RuntimeObservation
Source§impl PartialEq for RuntimeObservation
impl PartialEq for RuntimeObservation
impl StructuralPartialEq for RuntimeObservation
Auto Trait Implementations§
impl Freeze for RuntimeObservation
impl RefUnwindSafe for RuntimeObservation
impl Send for RuntimeObservation
impl Sync for RuntimeObservation
impl Unpin for RuntimeObservation
impl UnsafeUnpin for RuntimeObservation
impl UnwindSafe for RuntimeObservation
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