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();

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.