pub struct PlanStep {
pub number: usize,
pub description: String,
pub details: Option<String>,
pub files: Vec<String>,
pub completed: bool,
}Expand description
A step in an implementation plan.
Fields§
§number: usize§description: String§details: Option<String>§files: Vec<String>§completed: boolTrait 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