Enum libtest_mimic::RunnerEvent
source · [−]pub enum RunnerEvent<D> {
Started {
name: String,
kind: String,
},
Completed {
test: Test<D>,
outcome: Outcome,
},
}
Expand description
Event indicating that a given test has started running or has completed.
Variants
Started
Completed
Trait Implementations
Auto Trait Implementations
impl<D> RefUnwindSafe for RunnerEvent<D> where
D: RefUnwindSafe,
impl<D> Send for RunnerEvent<D> where
D: Send,
impl<D> Sync for RunnerEvent<D> where
D: Sync,
impl<D> Unpin for RunnerEvent<D> where
D: Unpin,
impl<D> UnwindSafe for RunnerEvent<D> where
D: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more