pub struct SetupProblem {
pub step: String,
pub reason: String,
}Expand description
What went wrong getting a worktree ready to work in.
Separate from a gate failure on purpose. “The environment was not ready” and
“the change was rejected” are different answers, and reporting the first as
the second is what made a missing node_modules read as a refused change.
Fields§
§step: String§reason: StringTrait Implementations§
Source§impl Clone for SetupProblem
impl Clone for SetupProblem
Source§fn clone(&self) -> SetupProblem
fn clone(&self) -> SetupProblem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SetupProblem
impl Debug for SetupProblem
impl Eq for SetupProblem
Source§impl PartialEq for SetupProblem
impl PartialEq for SetupProblem
impl StructuralPartialEq for SetupProblem
Auto Trait Implementations§
impl Freeze for SetupProblem
impl RefUnwindSafe for SetupProblem
impl Send for SetupProblem
impl Sync for SetupProblem
impl Unpin for SetupProblem
impl UnsafeUnpin for SetupProblem
impl UnwindSafe for SetupProblem
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