Trait legion::query::EntityFilter[][src]

pub trait EntityFilter: Default + Send + Sync {
    type Layout: LayoutFilter + GroupMatcher + Default + Send + Sync;
    type Dynamic: DynamicFilter;
    fn layout_filter(&self) -> &Self::Layout;
fn filters(&mut self) -> (&Self::Layout, &mut Self::Dynamic); }
Expand description

A combination of a LayoutFilter and a DynamicFilter.

Associated Types

The layout filter type.

The dynamic filter type.

Required methods

Returns a reference to the layout filter.

Returns a tuple of the layout and dynamic filters.

Implementors