pub struct SimulationTraceEntry {
pub node_id: NodeId,
pub task_type: String,
pub outcome: SimulatedOutcome,
pub estimated_duration: Option<Duration>,
pub dependencies: Vec<NodeId>,
pub evaluated_conditions: Vec<EvaluatedCondition>,
pub visit_order: usize,
}Expand description
A single entry in the simulation trace.
Fields§
§node_id: NodeIdNode that was evaluated.
task_type: StringTask type of the node.
outcome: SimulatedOutcomeOutcome of the simulated execution.
estimated_duration: Option<Duration>Estimated duration (if configured).
dependencies: Vec<NodeId>Dependencies that were checked.
evaluated_conditions: Vec<EvaluatedCondition>Edge conditions that were evaluated.
visit_order: usizeOrder in which this node was visited (0-based).
Trait Implementations§
Source§impl Clone for SimulationTraceEntry
impl Clone for SimulationTraceEntry
Source§fn clone(&self) -> SimulationTraceEntry
fn clone(&self) -> SimulationTraceEntry
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 SimulationTraceEntry
impl Debug for SimulationTraceEntry
Source§impl<'de> Deserialize<'de> for SimulationTraceEntry
impl<'de> Deserialize<'de> for SimulationTraceEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SimulationTraceEntry
impl RefUnwindSafe for SimulationTraceEntry
impl Send for SimulationTraceEntry
impl Sync for SimulationTraceEntry
impl Unpin for SimulationTraceEntry
impl UnsafeUnpin for SimulationTraceEntry
impl UnwindSafe for SimulationTraceEntry
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