Struct flat_commands::ChildCommands
source · [−]pub struct ChildCommands<'w, 's, 'a> { /* private fields */ }
Implementations
sourceimpl<'w, 's, 'a> ChildCommands<'w, 's, 'a>
impl<'w, 's, 'a> ChildCommands<'w, 's, 'a>
sourcepub fn with_sibling<T>(&mut self, bundle: T) -> &mut Self where
T: Bundle,
pub fn with_sibling<T>(&mut self, bundle: T) -> &mut Self where
T: Bundle,
Create a new entity with bundle components and the same parent as the current entity. Then move to the new entity.
sourcepub fn with_empty_sibling<T>(&mut self) -> &mut Self
pub fn with_empty_sibling<T>(&mut self) -> &mut Self
Create a new empty entity and move to it.
Trait Implementations
sourceimpl<'w, 's, 'a> ChildPusher<'w, 's, 'a> for ChildCommands<'w, 's, 'a>
impl<'w, 's, 'a> ChildPusher<'w, 's, 'a> for ChildCommands<'w, 's, 'a>
sourcefn push_children(&mut self, children: &[Entity]) -> &mut Self
fn push_children(&mut self, children: &[Entity]) -> &mut Self
Add multiple children to the current entity by id.
sourceimpl<'w, 's, 'a> ParentCommands<'w, 's, 'a> for ChildCommands<'w, 's, 'a>
impl<'w, 's, 'a> ParentCommands<'w, 's, 'a> for ChildCommands<'w, 's, 'a>
sourcefn insert(&mut self, component: impl Component) -> &mut Self
fn insert(&mut self, component: impl Component) -> &mut Self
add a component to the current entity
sourcefn insert_bundle(&mut self, bundle: impl Bundle) -> &mut Self
fn insert_bundle(&mut self, bundle: impl Bundle) -> &mut Self
add a bundle of components to the current entity
sourcefn with_child<T>(&mut self, bundle: T) -> ChildCommands<'w, 's, '_> where
T: Bundle,
fn with_child<T>(&mut self, bundle: T) -> ChildCommands<'w, 's, '_> where
T: Bundle,
Create a child entity with components from bundle with the current entity as its parent. Then make it the current entity Read more
sourcefn with_empty_child<T>(&mut self) -> ChildCommands<'w, 's, '_>
fn with_empty_child<T>(&mut self) -> ChildCommands<'w, 's, '_>
create a child entity and make it the current entity
sourcefn with_descendants(
&mut self,
local_root: impl FnOnce(&mut RootCommands<'_, '_, '_>)
) -> &mut Self
fn with_descendants(
&mut self,
local_root: impl FnOnce(&mut RootCommands<'_, '_, '_>)
) -> &mut Self
makes the current entity the root of a new local hierachy
sourcefn add_child(&mut self, child: Entity) -> &mut Self
fn add_child(&mut self, child: Entity) -> &mut Self
create a child entity but don’t advance to it.
sourcefn with_child_batch<I>(&mut self, bundles_iter: I) -> &mut Self where
I: IntoIterator + Send + Sync + 'static,
I::Item: Bundle,
fn with_child_batch<I>(&mut self, bundles_iter: I) -> &mut Self where
I: IntoIterator + Send + Sync + 'static,
I::Item: Bundle,
create multiple children each spawned with the same bundle of components.
Auto Trait Implementations
impl<'w, 's, 'a> RefUnwindSafe for ChildCommands<'w, 's, 'a>
impl<'w, 's, 'a> Send for ChildCommands<'w, 's, 'a>
impl<'w, 's, 'a> Sync for ChildCommands<'w, 's, 'a>
impl<'w, 's, 'a> Unpin for ChildCommands<'w, 's, 'a> where
's: 'a,
'w: 'a,
impl<'w, 's, 'a> !UnwindSafe for ChildCommands<'w, 's, 'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn 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 T where
T: Any,
impl<T> Downcast for T where
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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
. Read more
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
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. Read more
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. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more