pub trait CommandsSaveableExt {
// Required methods
fn save<P: Pipeline + Send + 'static>(&mut self, pipeline: P);
fn load<P: Pipeline + Send + 'static>(&mut self, pipeline: P);
}
Expand description
Extension trait that adds save-related methods to Bevy’s Commands
.
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.