pub unsafe trait SystemParamState: Send + Sync + 'static {
    fn init(world: &mut World, meta: &mut SystemMeta) -> Self;

    fn apply(&mut self, _world: &mut World) { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors