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§
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.