Struct shiv::hierarchy::ChildBuilder
source · pub struct ChildBuilder<'w, 's, 'a> { /* private fields */ }Implementations§
source§impl<'w, 's, 'a> ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> ChildBuilder<'w, 's, 'a>
pub fn add_command<C: Command>(&mut self, command: C) -> &mut Self
pub fn spawn(&mut self) -> EntityCommands<'w, 's, '_>
pub fn parent_entity(&self) -> Entity
Auto Trait Implementations§
impl<'w, 's, 'a> !RefUnwindSafe for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> Send for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> Sync for ChildBuilder<'w, 's, 'a>
impl<'w, 's, 'a> Unpin for ChildBuilder<'w, 's, 'a>where
's: 'a,
'w: 'a,
impl<'w, 's, 'a> !UnwindSafe for ChildBuilder<'w, 's, 'a>
Blanket Implementations§
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§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 moresource§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 moresource§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 moresource§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