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