pub trait Select {
    fn get_columns() -> &'static [&'static str];
}
Expand description

trait for acquiring the relevant attribute names for queries

Required Methods

gets a vector of attribute names that shall be included in the query select statement

Implementors