Trait bolero_engine::Engine

source ·
pub trait Engine<T: Test>: Sized {
    type Output;

    // Required method
    fn run(self, test: T, options: Options) -> Self::Output;
}
Expand description

Trait for defining an engine that executes a test

Required Associated Types§

Required Methods§

source

fn run(self, test: T, options: Options) -> Self::Output

Object Safety§

This trait is not object safe.

Implementors§