ComponentsPriority

Trait ComponentsPriority 

Source
pub trait ComponentsPriority {
    // Required method
    fn editor_component_priority<T>(&mut self, priority: u8) -> &mut Self
       where T: Component + Default + Send + 'static + Clone;
}

Required Methods§

Source

fn editor_component_priority<T>(&mut self, priority: u8) -> &mut Self
where T: Component + Default + Send + 'static + Clone,

registers a component order priority for the inspector

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ComponentsPriority for App

Source§

fn editor_component_priority<T>(&mut self, priority: u8) -> &mut App
where T: Component + Default + Send + 'static + Clone,

Implementors§