pub fn system_value<I, O, M>(
system: impl IntoSystem<I, O, M>,
) -> SystemHandleTemplate<I, O>where
I: SystemInput + 'static,
O: 'static,Expand description
This will create a new SystemHandleTemplate for the given system value.
This makes it possible to define systems “inline” in templates / scenes that
produce a SystemHandle.