Struct bevy_async_ecs::CommandQueueBuilder
source · pub struct CommandQueueBuilder { /* private fields */ }
Expand description
Builds a CommandQueue
that can by applied to the world that the builder was
constructed from.
The easiest way to get a CommandQueueBuilder
is with AsyncWorld::start_queue()
Implementations§
source§impl CommandQueueBuilder
impl CommandQueueBuilder
sourcepub fn push<C: Command>(self, command: C) -> Self
pub fn push<C: Command>(self, command: C) -> Self
Push a command into the CommandQueue
.
This function is meant to be chained.
sourcepub async fn apply(self)
pub async fn apply(self)
Apply the CommandQueue
to the world it was constructed from.
This function is meant to be the end of the chain.
sourcepub fn build(self) -> CommandQueue
pub fn build(self) -> CommandQueue
Return the built CommandQueue
without applying it to the world it was
constructed from.
This function is meant to be the end of the chain.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CommandQueueBuilder
impl Send for CommandQueueBuilder
impl Sync for CommandQueueBuilder
impl Unpin for CommandQueueBuilder
impl UnwindSafe for CommandQueueBuilder
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§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
.§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
.§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.§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.