pub struct Step {
pub kind: StepKind,
pub graph: ExecutionGraph,
}Expand description
One recorded step, as an owned snapshot (no borrow of the live graph).
Fields§
§kind: StepKind§graph: ExecutionGraphThe graph as it stood at this step (owned).
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Step
impl !UnwindSafe for Step
impl Freeze for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
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