[][src]Struct bevy_inspector_egui::reflect::ReflectedUI

pub struct ReflectedUI<T>(_);

Wrapper type for displaying inspector UI based on the types Reflect implementation.

Say you wanted to display a type defined in another crate in the inspector, and that type implements Reflect.

#[derive(Reflect, Default)]
struct SomeComponent {
    a: f32,
    b: Vec2,
}

Using the ReflectedUI wrapper type, you can include it in your inspector and edit the fields like you would expect:

#[derive(Inspectable, Default)]
struct Data {
    component: ReflectedUI<SomeComponent>,
    // it also works for bevy's types
    timer: ReflectedUI<Timer>,
}

Implementations

impl<T> ReflectedUI<T>[src]

pub fn new(val: T) -> Self[src]

Trait Implementations

impl<T: Debug> Debug for ReflectedUI<T>[src]

impl<T: Default> Default for ReflectedUI<T>[src]

impl<T> Deref for ReflectedUI<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for ReflectedUI<T>[src]

impl<T: Reflect> Inspectable for ReflectedUI<T>[src]

type 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<T> RefUnwindSafe for ReflectedUI<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for ReflectedUI<T> where
    T: Send
[src]

impl<T> Sync for ReflectedUI<T> where
    T: Sync
[src]

impl<T> Unpin for ReflectedUI<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for ReflectedUI<T> where
    T: UnwindSafe
[src]

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> DowncastSync for T where
    T: Send + Sync + Any

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

impl<T> FromResources 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> Resource for T where
    T: 'static + Send + Sync

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<V, T> VZip<V> for T where
    V: MultiLane<T>,