pub enum RunnerError {
StepShape {
step_index: usize,
reason: &'static str,
},
Process {
step_index: usize,
source: Error,
},
NonZeroExit {
step_index: usize,
status: i32,
stderr: String,
},
Notify {
step_index: usize,
source: Error,
},
PromptIo {
step_index: usize,
source: Error,
},
Interpolation {
step_index: usize,
reason: String,
},
}Expand description
Anything that can go wrong while running steps.
Variants§
StepShape
A step has an invalid shape (e.g. run and pipe both set).
Fields
Process
The underlying process could not be spawned.
NonZeroExit
The process exited with a non-zero status and on_fail was abort.
Fields
Notify
The notifier returned an error.
PromptIo
The prompter returned an I/O error.
Interpolation
Variable interpolation produced an error (reserved for future use).
Trait Implementations§
Source§impl Debug for RunnerError
impl Debug for RunnerError
Source§impl Display for RunnerError
impl Display for RunnerError
Source§impl Error for RunnerError
impl Error for RunnerError
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<RunnerError> for DispatchError
impl From<RunnerError> for DispatchError
Source§fn from(e: RunnerError) -> Self
fn from(e: RunnerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RunnerError
impl !RefUnwindSafe for RunnerError
impl Send for RunnerError
impl Sync for RunnerError
impl Unpin for RunnerError
impl UnsafeUnpin for RunnerError
impl !UnwindSafe for RunnerError
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
Source§impl<T> ErrorExt for T
impl<T> ErrorExt for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more