Trait ScrollerApp

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

Source

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.

Implementations on Foreign Types§

Source§

impl ScrollerApp for App

Source§

fn add_scroller_generator<T: ScrollerGenerator + Component + Clone, M, S: IntoSystem<SpawnerInput<T>, (), M>>( &mut self, system: S, ) -> &mut Self

Implementors§