pub enum TraceLashlangExecutionEvent {
ExecutionStarted {
event_key: String,
identity: TraceLashlangExecutionIdentity,
execution_map: TraceLashlangMap,
},
ExecutionFinished {
event_key: String,
identity: TraceLashlangExecutionIdentity,
status: TraceLashlangStatus,
error: Option<String>,
},
NodeStarted {
event_key: String,
identity: TraceLashlangExecutionIdentity,
node_id: String,
node_kind: String,
label: String,
occurrence: u64,
},
NodeCompleted {
event_key: String,
identity: TraceLashlangExecutionIdentity,
node_id: String,
node_kind: String,
label: String,
occurrence: u64,
},
NodeFailed {
event_key: String,
identity: TraceLashlangExecutionIdentity,
node_id: String,
node_kind: String,
label: String,
occurrence: u64,
error: String,
},
BranchSelected {
event_key: String,
identity: TraceLashlangExecutionIdentity,
node_id: String,
occurrence: u64,
edge_id: String,
selected: TraceBranchSelection,
},
ChildStarted {
event_key: String,
identity: TraceLashlangExecutionIdentity,
parent_node_id: String,
occurrence: u64,
child: TraceLashlangChildExecution,
},
}Variants§
ExecutionStarted
ExecutionFinished
NodeStarted
Fields
§
identity: TraceLashlangExecutionIdentityNodeCompleted
Fields
§
identity: TraceLashlangExecutionIdentityNodeFailed
Fields
§
identity: TraceLashlangExecutionIdentityBranchSelected
ChildStarted
Trait Implementations§
Source§impl Clone for TraceLashlangExecutionEvent
impl Clone for TraceLashlangExecutionEvent
Source§fn clone(&self) -> TraceLashlangExecutionEvent
fn clone(&self) -> TraceLashlangExecutionEvent
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 TraceLashlangExecutionEvent
impl Debug for TraceLashlangExecutionEvent
Source§impl<'de> Deserialize<'de> for TraceLashlangExecutionEvent
impl<'de> Deserialize<'de> for TraceLashlangExecutionEvent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TraceLashlangExecutionEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TraceLashlangExecutionEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TraceLashlangExecutionEvent
Source§impl PartialEq for TraceLashlangExecutionEvent
impl PartialEq for TraceLashlangExecutionEvent
Source§fn eq(&self, other: &TraceLashlangExecutionEvent) -> bool
fn eq(&self, other: &TraceLashlangExecutionEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TraceLashlangExecutionEvent
impl Serialize for TraceLashlangExecutionEvent
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for TraceLashlangExecutionEvent
Auto Trait Implementations§
impl Freeze for TraceLashlangExecutionEvent
impl RefUnwindSafe for TraceLashlangExecutionEvent
impl Send for TraceLashlangExecutionEvent
impl Sync for TraceLashlangExecutionEvent
impl Unpin for TraceLashlangExecutionEvent
impl UnsafeUnpin for TraceLashlangExecutionEvent
impl UnwindSafe for TraceLashlangExecutionEvent
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