pub struct CommandQueueBuilder { /* private fields */ }
Expand description
Builds a CommandQueue
that can be 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 Freeze for CommandQueueBuilder
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
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>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn 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>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which 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)
Converts
&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)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.