1 2 3 4 5 6 7 8
use crate::runner::Runner; #[macro_use] pub mod macros; pub trait Module<'a, R: Runner<'a>> { fn new(runner: &'a R) -> Self; }