1 2 3 4 5 6
extern crate theban_db_interface; use theban_db_interface::{DBInterface, DBResult}; pub trait Pass<DBI: DBInterface>{ fn run(&mut self, &mut DBI) -> DBResult<()>; }