pub struct Step {
pub id: String,
pub title: String,
pub status: Status,
pub detail: String,
pub remedy: Option<Remedy>,
}Expand description
One thing a new install might still need.
Fields§
§id: StringStable slug, so --json output can be matched on.
title: String§status: Status§detail: String§remedy: Option<Remedy>Optional because plenty of steps are somebody else’s to do — picking a model, deciding whether they want mail at all.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe 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