Skip to main content

SourceFor

Trait SourceFor 

Source
pub trait SourceFor<DB: Database>: Source<Family = DB::Family, Op = DB::Op, Digest = DB::Digest> + 'static { }
Expand description

A Source of operations for the given database.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<DB, S> SourceFor<DB> for S
where DB: Database, S: Source<Family = DB::Family, Op = DB::Op, Digest = DB::Digest> + 'static,