pub trait ExclusiveSystemParamState: Send + Sync {
    fn init(world: &mut World, system_meta: &mut SystemMeta) -> Self;

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

The state of a SystemParam.

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§