pub struct ReadCommand<TInputType>(/* private fields */);Expand description
The read command just sends its input straight to its output (this is useful to read the result of a query when used with spawn_query)
Trait Implementations§
Source§impl<TInputType> Clone for ReadCommand<TInputType>
impl<TInputType> Clone for ReadCommand<TInputType>
Source§impl<TInputType> Command for ReadCommand<TInputType>where
TInputType: 'static + SceneMessage,
impl<TInputType> Command for ReadCommand<TInputType>where
TInputType: 'static + SceneMessage,
Auto Trait Implementations§
impl<TInputType> Freeze for ReadCommand<TInputType>
impl<TInputType> RefUnwindSafe for ReadCommand<TInputType>where
TInputType: RefUnwindSafe,
impl<TInputType> Send for ReadCommand<TInputType>where
TInputType: Send,
impl<TInputType> Sync for ReadCommand<TInputType>where
TInputType: Sync,
impl<TInputType> Unpin for ReadCommand<TInputType>where
TInputType: Unpin,
impl<TInputType> UnwindSafe for ReadCommand<TInputType>where
TInputType: UnwindSafe,
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