pub enum CompareStepError {
Plan(PlanError),
Execute(ExecuteError),
}Expand description
A planning or generation failure while comparing derived output.
Variants§
Plan(PlanError)
The workspace could not produce a generation plan.
Execute(ExecuteError)
The generation inputs or generator could not produce an in-memory tree.
Trait Implementations§
Source§impl Debug for CompareStepError
impl Debug for CompareStepError
Source§impl Display for CompareStepError
impl Display for CompareStepError
Source§impl Error for CompareStepError
impl Error for CompareStepError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<ExecuteError> for CompareStepError
impl From<ExecuteError> for CompareStepError
Source§fn from(error: ExecuteError) -> Self
fn from(error: ExecuteError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CompareStepError
impl !UnwindSafe for CompareStepError
impl Freeze for CompareStepError
impl Send for CompareStepError
impl Sync for CompareStepError
impl Unpin for CompareStepError
impl UnsafeUnpin for CompareStepError
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