pub trait IntoQuery: IntoView + Sized { // Required method fn query() -> Query<Self>; }
A type (typically a view) which can construct a query.
Constructs a query.