Trait Run

Source
pub trait Run: Sized {
    // Required method
    fn run(self, db: &mut Db<Self>) -> impl Any + Hash;
}

Required Methods§

Source

fn run(self, db: &mut Db<Self>) -> impl Any + Hash

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§