pub enum RunResult {
Succeeded,
Failed {
exit_code: i32,
},
Cancelled,
}Variants§
Trait Implementations§
source§impl PartialEq<RunResult> for RunResult
impl PartialEq<RunResult> for RunResult
impl StructuralPartialEq for RunResult
Auto Trait Implementations§
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnwindSafe for RunResult
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