pub trait IntoQuery: IntoView + Sized {
    fn query() -> Query<Self, <Self::View as DefaultFilter>::Filter>;
}
Expand description

A type (typically a view) which can construct a query.

Required methods

Constructs a query.

Implementors