pub trait ScrollerApp {
// Required method
fn add_scroller_generator<T: ScrollerGenerator + Component + Clone, M, S: IntoSystem<SpawnerInput<T>, (), M>>(
&mut self,
system: S,
) -> &mut Self;
}
Required Methods§
fn add_scroller_generator<T: ScrollerGenerator + Component + Clone, M, S: IntoSystem<SpawnerInput<T>, (), M>>( &mut self, system: S, ) -> &mut Self
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.