Insertable

Trait Insertable 

Source
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§

Source

fn fields() -> Vec<String>

List of fields of struct as &str

Source

fn values(&self) -> Vec<Dypes>

List of values of struct as &str

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.

Implementors§