Trait bevy::ecs::system::ReadOnlySystemParam

pub unsafe trait ReadOnlySystemParam: SystemParam { }
Expand description

A SystemParam that only reads a given World.

§Safety

This must only be implemented for SystemParam impls that exclusively read the World passed in to SystemParam::get_param

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

§

impl ReadOnlySystemParam for ()

§

impl<'a, T> ReadOnlySystemParam for Option<Res<'a, T>>
where T: Resource,

§

impl<P0> ReadOnlySystemParam for (P0,)

§

impl<P0, P1> ReadOnlySystemParam for (P0, P1)

§

impl<P0, P1, P2> ReadOnlySystemParam for (P0, P1, P2)

§

impl<P0, P1, P2, P3> ReadOnlySystemParam for (P0, P1, P2, P3)

§

impl<P0, P1, P2, P3, P4> ReadOnlySystemParam for (P0, P1, P2, P3, P4)

§

impl<P0, P1, P2, P3, P4, P5> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5)

§

impl<P0, P1, P2, P3, P4, P5, P6> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8, P9)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14)

§

impl<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15> ReadOnlySystemParam for (P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15)

§

impl<T> ReadOnlySystemParam for Option<NonSend<'_, T>>
where T: 'static,

§

impl<T> ReadOnlySystemParam for PhantomData<T>
where T: ?Sized,

Implementors§

§

impl ReadOnlySystemParam for WorldId

§

impl ReadOnlySystemParam for SystemChangeTick

§

impl<'a> ReadOnlySystemParam for &'a Archetypes

§

impl<'a> ReadOnlySystemParam for &'a Bundles

§

impl<'a> ReadOnlySystemParam for &'a Components

§

impl<'a> ReadOnlySystemParam for &'a Entities

§

impl<'a> ReadOnlySystemParam for &'a RemovedComponentEvents

§

impl<'a, T> ReadOnlySystemParam for Res<'a, T>
where T: Resource,

§

impl<'s> ReadOnlySystemParam for SystemName<'s>

§

impl<'s, T> ReadOnlySystemParam for Local<'s, T>
where T: FromWorld + Send + 'static,

§

impl<'w> ReadOnlySystemParam for &'w World

SAFETY: only reads world

§

impl<'w, 's> ReadOnlySystemParam for Diagnostics<'w, 's>

§

impl<'w, 's> ReadOnlySystemParam for FallbackImageMsaa<'w>

§

impl<'w, 's> ReadOnlySystemParam for TransformHelper<'w, 's>
where Query<'w, 's, &'static Parent>: ReadOnlySystemParam, Query<'w, 's, &'static Transform>: ReadOnlySystemParam,

§

impl<'w, 's> ReadOnlySystemParam for DefaultUiCamera<'w, 's>

§

impl<'w, 's> ReadOnlySystemParam for UiLayoutSystemRemovedComponentParam<'w, 's>

§

impl<'w, 's> ReadOnlySystemParam for Commands<'w, 's>

§

impl<'w, 's> ReadOnlySystemParam for ParallelCommands<'w, 's>
where Deferred<'s, ParallelCommandQueue>: ReadOnlySystemParam, &'w Entities: ReadOnlySystemParam,

§

impl<'w, 's, Config, Clear> ReadOnlySystemParam for Gizmos<'w, 's, Config, Clear>
where Config: GizmoConfigGroup, Clear: 'static + Send + Sync, Deferred<'s, GizmoBuffer<Config, Clear>>: ReadOnlySystemParam, Res<'w, GizmoConfigStore>: ReadOnlySystemParam,

§

impl<'w, 's, D, F> ReadOnlySystemParam for Query<'w, 's, D, F>
where D: ReadOnlyQueryData + 'static, F: QueryFilter + 'static,

§

impl<'w, 's, E> ReadOnlySystemParam for EventReader<'w, 's, E>

§

impl<'w, 's, E> ReadOnlySystemParam for EventWriter<'w, E>

§

impl<'w, 's, P0> ReadOnlySystemParam for ParamSet<'w, 's, (P0,)>

§

impl<'w, 's, P0, P1> ReadOnlySystemParam for ParamSet<'w, 's, (P0, P1)>

§

impl<'w, 's, P0, P1, P2> ReadOnlySystemParam for ParamSet<'w, 's, (P0, P1, P2)>

§

impl<'w, 's, P0, P1, P2, P3> ReadOnlySystemParam for ParamSet<'w, 's, (P0, P1, P2, P3)>

§

impl<'w, 's, P0, P1, P2, P3, P4> ReadOnlySystemParam for ParamSet<'w, 's, (P0, P1, P2, P3, P4)>

§

impl<'w, 's, P0, P1, P2, P3, P4, P5> ReadOnlySystemParam for ParamSet<'w, 's, (P0, P1, P2, P3, P4, P5)>

§

impl<'w, 's, P0, P1, P2, P3, P4, P5, P6> ReadOnlySystemParam for ParamSet<'w, 's, (P0, P1, P2, P3, P4, P5, P6)>

§

impl<'w, 's, P0, P1, P2, P3, P4, P5, P6, P7> ReadOnlySystemParam for ParamSet<'w, 's, (P0, P1, P2, P3, P4, P5, P6, P7)>

§

impl<'w, 's, P> ReadOnlySystemParam for StaticSystemParam<'w, 's, P>
where P: ReadOnlySystemParam + 'static,

§

impl<'w, 's, T> ReadOnlySystemParam for ComponentIdFor<'s, T>
where T: Component, Local<'s, InitComponentId<T>>: ReadOnlySystemParam,

§

impl<'w, 's, T> ReadOnlySystemParam for RemovedComponents<'w, 's, T>

§

impl<'w, T> ReadOnlySystemParam for NonSend<'w, T>

§

impl<P> ReadOnlySystemParam for Extract<'_, '_, P>

§

impl<T> ReadOnlySystemParam for Deferred<'_, T>
where T: SystemBuffer,