Struct rs_ecs::With [−][src]
pub struct With<S, C>(_);Expand description
A query specification to iterate over entities with a certain component, but without borrowing that component.
See also Query::with()
Examples
A query for components of type u32 and bool,
only matching entities with a component of type f32.
let query = Query::<With<(&u32, &bool), f32>>::new();