pub trait Insertable {
// Required methods
fn fields() -> Vec<String>;
fn values(&self) -> Vec<Dypes>;
}Expand description
Need to implement for structs to be inserted
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.