pub trait RenderSystem {
// Required method
fn run(&mut self, graphics_objects: Arc<GraphicsObjects>);
}Required Methods§
fn run(&mut self, graphics_objects: Arc<GraphicsObjects>)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".