[]Trait acute_ecs::query::IntoQuery

pub trait IntoQuery: for<'a> View<'a> + DefaultFilter {
    fn query() -> Query<Self, Self::Filter>;
}

Converts a View into a Query.

Required methods

fn query() -> Query<Self, Self::Filter>

Converts the View type into a Query.

Loading content...

Implementors

impl<T> IntoQuery for T where
    T: for<'a> View<'a> + DefaultFilter

Loading content...