pub trait RenderAssetDependency {
// Required method
fn register_system(
render_app: &mut SubApp,
system: ScheduleConfigs<Box<dyn System<Out = Result<(), BevyError>, In = ()>>>,
);
}
Required Methods§
fn register_system( render_app: &mut SubApp, system: ScheduleConfigs<Box<dyn System<Out = Result<(), BevyError>, In = ()>>>, )
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.