pub trait TableSet {
// Required method
fn tables() -> Box<dyn Iterator<Item = Box<dyn TableInfo>>>;
}
Expand description
General trait for defining the set of tables Used to initialize database
Required 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.