pub enum ExecutionOutcome {
Executed,
CompileError(String),
}Expand description
Whether a kernel was executed (without regard to correctness) or failed to compile.
Variants§
Executed
The kernel was executed successfully (correctness not checked)
CompileError(String)
The kernel could not compile
Trait Implementations§
Source§impl Debug for ExecutionOutcome
impl Debug for ExecutionOutcome
Auto Trait Implementations§
impl Freeze for ExecutionOutcome
impl RefUnwindSafe for ExecutionOutcome
impl Send for ExecutionOutcome
impl Sync for ExecutionOutcome
impl Unpin for ExecutionOutcome
impl UnwindSafe for ExecutionOutcome
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