pub enum TestOutcome {
Validated(ValidationResult),
CompileError(String),
}Expand description
The overall outcome of a test, combining execution and validation. Either the kernel was validated or failed to compile.
Variants§
Validated(ValidationResult)
The kernel was executed and validation was performed
CompileError(String)
The kernel could not compile
Implementations§
Source§impl TestOutcome
impl TestOutcome
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestOutcome
impl RefUnwindSafe for TestOutcome
impl Send for TestOutcome
impl Sync for TestOutcome
impl Unpin for TestOutcome
impl UnwindSafe for TestOutcome
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