Trait dengine::Insertable[][src]

pub trait Insertable {
    fn fields() -> Vec<String>;
fn values(&self) -> Vec<String>; }

Need to implement for structs to be inserted

Required Methods

List of fields of struct as &str

List of values of struct as &str

Implementors