pub trait Set {
type Config;
// Required methods
fn init(config: Self::Config) -> Self;
fn tables(&self) -> Vec<&dyn DynTable>;
}Expand description
A named dataset made up of one or more Tables.
Required Associated Types§
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.