[][src]Struct bevy_ecs::WorldBuilder

pub struct WorldBuilder<'a> {
    pub world: &'a mut World,
    pub current_entity: Option<Entity>,
}

Modify a World using the builder pattern

Fields

world: &'a mut Worldcurrent_entity: Option<Entity>

Implementations

impl<'a> WorldBuilder<'a>[src]

pub fn entity(&mut self) -> &mut Self[src]

pub fn set_entity(&mut self, entity: Entity) -> &mut Self[src]

pub fn with<T>(&mut self, component: T) -> &mut Self where
    T: Component
[src]

pub fn with_bundle(&mut self, components: impl DynamicBundle) -> &mut Self[src]

pub fn spawn_batch<I>(&mut self, components_iter: I) -> &mut Self where
    I: IntoIterator,
    I::Item: Bundle
[src]

pub fn spawn(&mut self, components: impl DynamicBundle) -> &mut Self[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for WorldBuilder<'a>

impl<'a> Send for WorldBuilder<'a>

impl<'a> Sync for WorldBuilder<'a>

impl<'a> Unpin for WorldBuilder<'a>

impl<'a> !UnwindSafe for WorldBuilder<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,