Trait TaskOutput

Source
pub trait TaskOutput<Db: DataBase>: DbKey<Value = Self>
where Self: Sized + 'static,
{ // Required method fn to_db(&self, db: &mut Db); // Provided method fn out_types() -> Vec<TypeId> { ... } }

Required Methods§

Source

fn to_db(&self, db: &mut Db)

Provided Methods§

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.

Implementations on Foreign Types§

Source§

impl<Db: DataBase> TaskOutput<Db> for ()

Source§

fn to_db(&self, _db: &mut Db)

Implementors§