pub trait BuildableSystemParam: SystemParam {
type Builder<'b>;
// Required method
fn build(
world: &mut World,
meta: &mut SystemMeta,
func: impl FnOnce(&mut Self::Builder<'_>),
) -> Self::State;
}
Expand description
A parameter that can be built with SystemBuilder
Required Associated Types§
Required Methods§
Sourcefn build(
world: &mut World,
meta: &mut SystemMeta,
func: impl FnOnce(&mut Self::Builder<'_>),
) -> Self::State
fn build( world: &mut World, meta: &mut SystemMeta, func: impl FnOnce(&mut Self::Builder<'_>), ) -> Self::State
Constructs SystemParam::State
for Self
using a given builder function
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.