1 2 3 4 5 6
pub trait Projectable { /** Get relation name. */ fn relation() -> &'static str; /** Get the list for columns. */ fn columns() -> &'static [&'static str]; }