pub enum ExecutionError {
Runner(String),
Redirect(String),
}Expand description
Errors that can occur during execution.
Variants§
Runner(String)
A CommandRunner returned an error for a specific command.
Redirect(String)
Output redirection failed (e.g., could not open or write the file).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecutionError
impl RefUnwindSafe for ExecutionError
impl Send for ExecutionError
impl Sync for ExecutionError
impl Unpin for ExecutionError
impl UnsafeUnpin for ExecutionError
impl UnwindSafe for ExecutionError
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