Struct bevy_inspector_egui::widgets::InspectorQuery[][src]

pub struct InspectorQuery<Q, F = ()>(_);

Executes Queries and displays the result.

You can use any types and filters which are allowed in regular bevy queries, however you may need to specify a 'static lifetime since you can’t elide them in structs.

use bevy::prelude::*;
use bevy_inspector_egui::{Inspectable, InspectorPlugin};
use bevy_inspector_egui::widgets::InspectorQuery;

struct Collider;

#[derive(Inspectable, Default)]
struct Queries {
  colliders: InspectorQuery<Entity, With<Collider>>,
  root_entities: InspectorQuery<Entity, Without<Parent>>,
  transforms: InspectorQuery<&'static mut Transform>,
}

fn main() {
    App::build()
        .add_plugins(DefaultPlugins)
        .add_plugin(InspectorPlugin::<Queries>::new())
        .run();
}

Trait Implementations

impl<Q, F> Default for InspectorQuery<Q, F>[src]

impl<'w, Q, F> Inspectable for InspectorQuery<Q, F> where
    Q: WorldQuery,
    F: WorldQuery,
    F::Fetch: FilterFetch,
    <<Q as WorldQuery>::Fetch as Fetch<'static>>::Item: Inspectable
[src]

type Attributes = <<<Q as WorldQuery>::Fetch as Fetch<'static>>::Item as Inspectable>::Attributes

The Attributes associated type specifies what attributes can be passed to a field. See the following snippet for an example: Read more

Auto Trait Implementations

impl<Q, F> RefUnwindSafe for InspectorQuery<Q, F> where
    F: RefUnwindSafe,
    Q: RefUnwindSafe

impl<Q, F> Send for InspectorQuery<Q, F> where
    F: Send,
    Q: Send

impl<Q, F> Sync for InspectorQuery<Q, F> where
    F: Sync,
    Q: Sync

impl<Q, F> Unpin for InspectorQuery<Q, F> where
    F: Unpin,
    Q: Unpin

impl<Q, F> UnwindSafe for InspectorQuery<Q, F> where
    F: UnwindSafe,
    Q: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T> FromWorld for T where
    T: Default

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,