pub struct RunSystemCachedWith<S, I, O, M>where
I: SystemInput,
S: IntoSystem<I, O, M>,{ /* private fields */ }
Expand description
The Command
type for running a cached one-shot system from
Commands
.
See World::register_system_cached
for more information.
Implementations§
Source§impl<S, I, O, M> RunSystemCachedWith<S, I, O, M>where
I: SystemInput,
S: IntoSystem<I, O, M>,
impl<S, I, O, M> RunSystemCachedWith<S, I, O, M>where
I: SystemInput,
S: IntoSystem<I, O, M>,
Trait Implementations§
Source§impl<S, I, O, M> Command for RunSystemCachedWith<S, I, O, M>where
I: SystemInput<Inner<'static>: Send> + Send + 'static,
O: Send + 'static,
S: IntoSystem<I, O, M> + Send + 'static,
M: 'static,
impl<S, I, O, M> Command for RunSystemCachedWith<S, I, O, M>where
I: SystemInput<Inner<'static>: Send> + Send + 'static,
O: Send + 'static,
S: IntoSystem<I, O, M> + Send + 'static,
M: 'static,
Auto Trait Implementations§
impl<S, I, O, M> Freeze for RunSystemCachedWith<S, I, O, M>
impl<S, I, O, M> RefUnwindSafe for RunSystemCachedWith<S, I, O, M>
impl<S, I, O, M> Send for RunSystemCachedWith<S, I, O, M>
impl<S, I, O, M> Sync for RunSystemCachedWith<S, I, O, M>
impl<S, I, O, M> Unpin for RunSystemCachedWith<S, I, O, M>
impl<S, I, O, M> UnwindSafe for RunSystemCachedWith<S, I, O, M>
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
Mutably borrows from an owned value. Read more
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>
Convert
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>
Convert
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)
Convert
&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)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.