Trait legion::IntoQuery[][src]

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

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

Required methods

fn query() -> Query<Self, <Self::View as DefaultFilter>::Filter>[src]

Constructs a query.

Loading content...

Implementors

impl<T: IntoView> IntoQuery for T[src]

Loading content...