InfallibleSystemFn

Trait InfallibleSystemFn 

Source
pub trait InfallibleSystemFn: Send + Sync {
    // Required method
    fn run_infallible(&mut self, ctx: SystemContext<'_>);
}

Required Methods§

Source

fn run_infallible(&mut self, ctx: SystemContext<'_>)

Implementors§

Source§

impl<F> InfallibleSystemFn for F
where F: FnMut(SystemContext<'_>) + Send + Sync,