pub enum BoundedError {
Launch(Error),
Stdin(Error),
Wait(Error),
WaitCleanup {
source: Error,
operation_elapsed_ms: u64,
cleanup: CommandCleanupEvidence,
},
}Expand description
Where a bounded invocation failed before producing a wait outcome.
Variants§
Auto Trait Implementations§
impl !RefUnwindSafe for BoundedError
impl !UnwindSafe for BoundedError
impl Freeze for BoundedError
impl Send for BoundedError
impl Sync for BoundedError
impl Unpin for BoundedError
impl UnsafeUnpin for BoundedError
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