| 26 | |
| 27 | #[derive(Debug)] |
| 28 | pub struct SelectQuery { |
| 29 | pub table: &'static str, |
| 30 | pub columns: &'static [&'static str], |
| 31 | } |
| 32 | |
| 33 | pub trait QueryDsl: Model { |
| 34 | fn all() -> QueryBuilder<Self>; |
nothing calls this directly
no outgoing calls
no test coverage detected