pub struct SimulationReport {
pub step_count: usize,
pub estimated_duration_ms: u64,
pub dependencies: Vec<String>,
pub warnings: Vec<String>,
}Expand description
A simple simulation report produced by dry-running a crate::workflow::Workflow.
Fields§
§step_count: usizeTotal number of tasks (steps) in the workflow.
estimated_duration_ms: u64Estimated total duration in milliseconds (sum of per-task estimates).
dependencies: Vec<String>Descriptions of dependency relationships found
(e.g. "task_b [<id>] depends on task_a [<id>]").
warnings: Vec<String>Warnings detected during simulation (e.g. empty workflow, no timeout set).
Implementations§
Trait Implementations§
Source§impl Clone for SimulationReport
impl Clone for SimulationReport
Source§fn clone(&self) -> SimulationReport
fn clone(&self) -> SimulationReport
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 moreAuto Trait Implementations§
impl Freeze for SimulationReport
impl RefUnwindSafe for SimulationReport
impl Send for SimulationReport
impl Sync for SimulationReport
impl Unpin for SimulationReport
impl UnsafeUnpin for SimulationReport
impl UnwindSafe for SimulationReport
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