Struct bevy_ecs::system::StaticSystemParam
source · pub struct StaticSystemParam<'w, 's, P: SystemParam>(/* private fields */);
Expand description
A helper for using system parameters in generic contexts
This type is a SystemParam
adapter which always has
Self::State::Item == Self
(ignoring lifetimes for brevity),
no matter the argument SystemParam
(P
) (other than
that P
must be 'static
)
This makes it useful for having arbitrary SystemParam
type arguments
to function systems, or for generic types using the SystemParam
derive:
use bevy_ecs::system::{SystemParam, StaticSystemParam};
#[derive(SystemParam)]
struct GenericParam<'w,'s, T: SystemParam + 'static> {
field: StaticSystemParam<'w, 's, T>,
}
fn do_thing_generically<T: SystemParam + 'static>(t: StaticSystemParam<T>) {}
fn check_always_is_system<T: SystemParam + 'static>(){
bevy_ecs::system::assert_is_system(do_thing_generically::<T>);
}
Note that in a real case you’d generally want
additional bounds on P
, for your use of the parameter
to have a reason to be generic.
For example, using this would allow a type to be generic over
whether a resource is accessed mutably or not, with
impls being bounded on P: Deref<Target=MyType>
, and
P: DerefMut<Target=MyType>
depending on whether the
method requires mutable access or not.
The method which doesn’t use this type will not compile:
fn do_thing_generically<T: SystemParam + 'static>(t: T) {}
#[derive(SystemParam)]
struct GenericParam<'w, 's, T: SystemParam> {
field: T,
// Use the lifetimes in this type, or they will be unbound.
phantom: core::marker::PhantomData<&'w &'s ()>
}
Implementations§
source§impl<'w, 's, P: SystemParam> StaticSystemParam<'w, 's, P>
impl<'w, 's, P: SystemParam> StaticSystemParam<'w, 's, P>
sourcepub fn into_inner(self) -> SystemParamItem<'w, 's, P>
pub fn into_inner(self) -> SystemParamItem<'w, 's, P>
Get the value of the parameter
Trait Implementations§
source§impl<'w, 's, P: SystemParam> Deref for StaticSystemParam<'w, 's, P>
impl<'w, 's, P: SystemParam> Deref for StaticSystemParam<'w, 's, P>
source§impl<'w, 's, P: SystemParam> DerefMut for StaticSystemParam<'w, 's, P>
impl<'w, 's, P: SystemParam> DerefMut for StaticSystemParam<'w, 's, P>
source§impl<P: SystemParam + 'static> SystemParam for StaticSystemParam<'_, '_, P>
impl<P: SystemParam + 'static> SystemParam for StaticSystemParam<'_, '_, P>
§type State = <P as SystemParam>::State
type State = <P as SystemParam>::State
§type Item<'world, 'state> = StaticSystemParam<'world, 'state, P>
type Item<'world, 'state> = StaticSystemParam<'world, 'state, P>
Self
, instantiated with new lifetimes. Read moresource§fn init_state(world: &mut World, system_meta: &mut SystemMeta) -> Self::State
fn init_state(world: &mut World, system_meta: &mut SystemMeta) -> Self::State
World
access used by this SystemParam
and creates a new instance of this param’s State
.source§unsafe fn new_archetype(
state: &mut Self::State,
archetype: &Archetype,
system_meta: &mut SystemMeta
)
unsafe fn new_archetype( state: &mut Self::State, archetype: &Archetype, system_meta: &mut SystemMeta )
Archetype
, registers the components accessed by this SystemParam
(if applicable).a Read moresource§fn apply(state: &mut Self::State, system_meta: &SystemMeta, world: &mut World)
fn apply(state: &mut Self::State, system_meta: &SystemMeta, world: &mut World)
SystemParam
’s state.
This is used to apply Commands
during apply_deferred
.source§fn queue(
state: &mut Self::State,
system_meta: &SystemMeta,
world: DeferredWorld<'_>
)
fn queue( state: &mut Self::State, system_meta: &SystemMeta, world: DeferredWorld<'_> )
apply_deferred
.source§unsafe fn get_param<'world, 'state>(
state: &'state mut Self::State,
system_meta: &SystemMeta,
world: UnsafeWorldCell<'world>,
change_tick: Tick
) -> Self::Item<'world, 'state>
unsafe fn get_param<'world, 'state>( state: &'state mut Self::State, system_meta: &SystemMeta, world: UnsafeWorldCell<'world>, change_tick: Tick ) -> Self::Item<'world, 'state>
SystemParamFunction
. Read moreimpl<'w, 's, P: ReadOnlySystemParam + 'static> ReadOnlySystemParam for StaticSystemParam<'w, 's, P>
Auto Trait Implementations§
impl<'w, 's, P> Freeze for StaticSystemParam<'w, 's, P>
impl<'w, 's, P> RefUnwindSafe for StaticSystemParam<'w, 's, P>
impl<'w, 's, P> Send for StaticSystemParam<'w, 's, P>
impl<'w, 's, P> Sync for StaticSystemParam<'w, 's, P>
impl<'w, 's, P> Unpin for StaticSystemParam<'w, 's, P>
impl<'w, 's, P> UnwindSafe for StaticSystemParam<'w, 's, P>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.