Trait bevy_inspector_egui::RegisterInspectable[][src]

pub trait RegisterInspectable {
    fn register_inspectable<T: Inspectable + 'static>(&mut self) -> &mut Self;
}
Expand description

Helper trait for enabling app.register_inspectable::<T>()

Required methods

Register type T so that it can be displayed by the WorldInspectorPlugin. Forwards to InspectableRegistry::register.

Implementations on Foreign Types

Implementors