pub struct PlanStep {
pub action_name: String,
pub status: PlanStepStatus,
pub elapsed: f32,
pub duration: f32,
}Expand description
Runtime state of one action being executed.
Fields§
§action_name: String§status: PlanStepStatus§elapsed: f32Elapsed time since this step started, in seconds.
duration: f32Expected duration (from Action::duration_secs).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlanStep
impl RefUnwindSafe for PlanStep
impl Send for PlanStep
impl Sync for PlanStep
impl Unpin for PlanStep
impl UnsafeUnpin for PlanStep
impl UnwindSafe for PlanStep
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