pub struct WithOneRelated(pub Entity);Expand description
A wrapper over an Entity indicating that an entity should be added.
This is intended to be used for hierarchical spawning via traits like SpawnableList and SpawnRelated.
Unlike WithRelated this only adds one entity.
Also see the children and related macros that abstract over the Spawn API.
let mut world = World::new();
let child1 = world.spawn(Name::new("Child1")).id();
world.spawn((
Name::new("Root"),
Children::spawn((
// This adds the already existing entity as a child of Root.
WithOneRelated(child1),
)),
));Tuple Fields§
§0: EntityTrait Implementations§
Source§impl<R: Relationship> SpawnableList<R> for WithOneRelated
impl<R: Relationship> SpawnableList<R> for WithOneRelated
Auto Trait Implementations§
impl Freeze for WithOneRelated
impl RefUnwindSafe for WithOneRelated
impl Send for WithOneRelated
impl Sync for WithOneRelated
impl Unpin for WithOneRelated
impl UnwindSafe for WithOneRelated
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> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.