pub enum LashlangExecutionObservation {
NodeStarted {
site: LashlangExecutionSite,
occurrence: u64,
},
NodeCompleted {
site: LashlangExecutionSite,
occurrence: u64,
},
NodeFailed {
site: LashlangExecutionSite,
occurrence: u64,
error: String,
},
BranchSelected {
site: LashlangExecutionSite,
occurrence: u64,
edge_id: String,
selected: ProcessBranchSelection,
},
ChildStarted {
site: LashlangExecutionSite,
occurrence: u64,
child: LashlangExecutionChild,
},
}Variants§
Trait Implementations§
Source§impl Clone for LashlangExecutionObservation
impl Clone for LashlangExecutionObservation
Source§fn clone(&self) -> LashlangExecutionObservation
fn clone(&self) -> LashlangExecutionObservation
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 LashlangExecutionObservation
impl Debug for LashlangExecutionObservation
impl Eq for LashlangExecutionObservation
impl StructuralPartialEq for LashlangExecutionObservation
Auto Trait Implementations§
impl Freeze for LashlangExecutionObservation
impl RefUnwindSafe for LashlangExecutionObservation
impl Send for LashlangExecutionObservation
impl Sync for LashlangExecutionObservation
impl Unpin for LashlangExecutionObservation
impl UnsafeUnpin for LashlangExecutionObservation
impl UnwindSafe for LashlangExecutionObservation
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