Trace a simple step with timing
(
&mut self,
phase: PlanningPhase,
description: String,
metadata: TraceMetadata,
)
| 124 | |
| 125 | /// Trace a simple step with timing |
| 126 | pub fn trace_step( |
| 127 | &mut self, |
| 128 | phase: PlanningPhase, |
| 129 | description: String, |
| 130 | metadata: TraceMetadata, |
| 131 | ) { |
| 132 | self.start_step(phase.clone(), description.clone()); |
| 133 | self.end_step(phase, description, None, None, None, metadata); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | impl PlanTrace { |
no test coverage detected