Struct bevy::ecs::system::FunctionSystem [−]
Implementations
impl<In, Out, Param, Marker, F> FunctionSystem<In, Out, Param, Marker, F> where
Param: SystemParam,
Param: SystemParam,
pub fn config(
self,
f: impl FnOnce(&mut <<Param as SystemParam>::Fetch as SystemParamState>::Config)
) -> FunctionSystem<In, Out, Param, Marker, F>
self,
f: impl FnOnce(&mut <<Param as SystemParam>::Fetch as SystemParamState>::Config)
) -> FunctionSystem<In, Out, Param, Marker, F>
Trait Implementations
impl<In, Out, Param, Marker, F> IntoSystem<Param, FunctionSystem<In, Out, Param, Marker, F>> for F where
Param: SystemParam + 'static,
In: 'static,
Out: 'static,
F: SystemParamFunction<In, Out, Param, Marker> + Send + Sync + 'static,
Marker: 'static,
Param: SystemParam + 'static,
In: 'static,
Out: 'static,
F: SystemParamFunction<In, Out, Param, Marker> + Send + Sync + 'static,
Marker: 'static,
pub fn system(self) -> FunctionSystem<In, Out, Param, Marker, F>
impl<In, Out, Param, Marker, F> System for FunctionSystem<In, Out, Param, Marker, F> where
Param: SystemParam + 'static,
In: 'static,
Out: 'static,
F: SystemParamFunction<In, Out, Param, Marker> + Send + Sync + 'static,
Marker: 'static,
Param: SystemParam + 'static,
In: 'static,
Out: 'static,
F: SystemParamFunction<In, Out, Param, Marker> + Send + Sync + 'static,
Marker: 'static,
type In = In
type Out = Out
pub fn name(&self) -> Cow<'static, str>
pub fn id(&self) -> SystemId
pub fn new_archetype(&mut self, archetype: &Archetype)
pub fn component_access(&self) -> &Access<ComponentId>
pub fn archetype_component_access(&self) -> &Access<ArchetypeComponentId>
pub fn is_send(&self) -> bool
pub unsafe fn run_unsafe(
&mut self,
input: <FunctionSystem<In, Out, Param, Marker, F> as System>::In,
world: &World
) -> <FunctionSystem<In, Out, Param, Marker, F> as System>::Out
&mut self,
input: <FunctionSystem<In, Out, Param, Marker, F> as System>::In,
world: &World
) -> <FunctionSystem<In, Out, Param, Marker, F> as System>::Out
pub fn apply_buffers(&mut self, world: &mut World)
pub fn initialize(&mut self, world: &mut World)
pub fn check_change_tick(&mut self, change_tick: u32)
pub fn run(&mut self, input: Self::In, world: &mut World) -> Self::Out
Auto Trait Implementations
impl<In, Out, Param, Marker, F> RefUnwindSafe for FunctionSystem<In, Out, Param, Marker, F> where
F: RefUnwindSafe,
<<Param as SystemParam>::Fetch as SystemParamState>::Config: RefUnwindSafe,
<Param as SystemParam>::Fetch: RefUnwindSafe,
F: RefUnwindSafe,
<<Param as SystemParam>::Fetch as SystemParamState>::Config: RefUnwindSafe,
<Param as SystemParam>::Fetch: RefUnwindSafe,
impl<In, Out, Param, Marker, F> Send for FunctionSystem<In, Out, Param, Marker, F> where
F: Send,
F: Send,
impl<In, Out, Param, Marker, F> Sync for FunctionSystem<In, Out, Param, Marker, F> where
F: Sync,
F: Sync,
impl<In, Out, Param, Marker, F> Unpin for FunctionSystem<In, Out, Param, Marker, F> where
F: Unpin,
<<Param as SystemParam>::Fetch as SystemParamState>::Config: Unpin,
<Param as SystemParam>::Fetch: Unpin,
F: Unpin,
<<Param as SystemParam>::Fetch as SystemParamState>::Config: Unpin,
<Param as SystemParam>::Fetch: Unpin,
impl<In, Out, Param, Marker, F> UnwindSafe for FunctionSystem<In, Out, Param, Marker, F> where
F: UnwindSafe,
<<Param as SystemParam>::Fetch as SystemParamState>::Config: UnwindSafe,
<Param as SystemParam>::Fetch: UnwindSafe,
F: UnwindSafe,
<<Param as SystemParam>::Fetch as SystemParamState>::Config: UnwindSafe,
<Param as SystemParam>::Fetch: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Any for T where
T: Any,
T: Any,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Component for T where
T: 'static + Send + Sync,
T: 'static + Send + Sync,
impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> Downcast<T> for T
impl<T> DowncastSync for T where
T: Any + Send + Sync,
T: Any + Send + Sync,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]
Notable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;pub fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;[src]
Notable traits for Instrumented<T>
impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<SystemA, SystemB> IntoChainSystem<SystemB> for SystemA where
SystemB: System<In = <SystemA as System>::Out>,
SystemA: System,
SystemB: System<In = <SystemA as System>::Out>,
SystemA: System,
pub fn chain(self, system: SystemB) -> ChainSystem<SystemA, SystemB>
impl<S, Params, SystemType> IntoExclusiveSystem<(Params, SystemType), ExclusiveSystemCoerced> for S where
S: IntoSystem<Params, SystemType>,
SystemType: System<In = (), Out = ()>,
S: IntoSystem<Params, SystemType>,
SystemType: System<In = (), Out = ()>,
pub fn exclusive_system(self) -> ExclusiveSystemCoerced
impl<S> IntoRunCriteria<Box<dyn System<Out = ShouldRun, In = ()> + 'static, Global>> for S where
S: System<In = (), Out = ShouldRun>,
S: System<In = (), Out = ShouldRun>,
pub fn into(self) -> RunCriteriaDescriptorOrLabel
impl<Sys> IntoSystem<(), Sys> for Sys where
Sys: System,
Sys: System,
pub fn system(self) -> Sys
impl<S> ParallelSystemDescriptorCoercion for S where
S: System<In = (), Out = ()>,
S: System<In = (), Out = ()>,
pub fn with_run_criteria<Marker>(
self,
run_criteria: impl IntoRunCriteria<Marker>
) -> ParallelSystemDescriptor
self,
run_criteria: impl IntoRunCriteria<Marker>
) -> ParallelSystemDescriptor
pub fn label(self, label: impl SystemLabel) -> ParallelSystemDescriptor
pub fn before(self, label: impl SystemLabel) -> ParallelSystemDescriptor
pub fn after(self, label: impl SystemLabel) -> ParallelSystemDescriptor
pub fn in_ambiguity_set(
self,
set: impl AmbiguitySetLabel
) -> ParallelSystemDescriptor
self,
set: impl AmbiguitySetLabel
) -> ParallelSystemDescriptor
impl<S> RunCriteriaDescriptorCoercion for S where
S: System<In = (), Out = ShouldRun>,
S: System<In = (), Out = ShouldRun>,
pub fn label(self, label: impl RunCriteriaLabel) -> RunCriteriaDescriptor
pub fn label_discard_if_duplicate(
self,
label: impl RunCriteriaLabel
) -> RunCriteriaDescriptor
self,
label: impl RunCriteriaLabel
) -> RunCriteriaDescriptor
pub fn before(self, label: impl RunCriteriaLabel) -> RunCriteriaDescriptor
pub fn after(self, label: impl RunCriteriaLabel) -> RunCriteriaDescriptor
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Upcast<T> for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,