pub struct PlanPhase {
pub name: String,
pub steps: Vec<PlanStep>,
pub completed: bool,
}Expand description
A phase in an implementation plan (groups related steps).
Fields§
§name: String§steps: Vec<PlanStep>§completed: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for PlanPhase
impl RefUnwindSafe for PlanPhase
impl Send for PlanPhase
impl Sync for PlanPhase
impl Unpin for PlanPhase
impl UnsafeUnpin for PlanPhase
impl UnwindSafe for PlanPhase
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