Trait bevy::prelude::IntoSystem[]

pub trait IntoSystem<Params, SystemType> where
    SystemType: System
{ pub fn system(self) -> SystemType; }

Required methods

pub fn system(self) -> SystemType

Loading content...

Implementors

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, 

impl<Sys> IntoSystem<(), Sys> for Sys where
    Sys: System

Loading content...