ScopedEngine

Trait ScopedEngine 

Source
pub trait ScopedEngine {
    type Output;

    // Required method
    fn run<F, R>(self, test: F, options: Options) -> Self::Output
       where F: FnMut() -> R + RefUnwindSafe,
             R: IntoResult;
}

Required Associated Types§

Required Methods§

Source

fn run<F, R>(self, test: F, options: Options) -> Self::Output
where F: FnMut() -> R + RefUnwindSafe, R: IntoResult,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§