[−][src]Struct specs::world::LazyBuilder
Like EntityBuilder, but inserts the component
lazily, meaning on maintain.
If you need those components to exist immediately,
you have to insert them into the storages yourself.
Fields
entity: Entity
The entity that we're inserting components for.
lazy: &'a LazyUpdate
The lazy update reference.
Trait Implementations
impl<'a> MarkedBuilder for LazyBuilder<'a>[src]
impl<'a> MarkedBuilder for LazyBuilder<'a>fn marked<M>(self) -> Self where
M: Marker, [src]
fn marked<M>(self) -> Self where
M: Marker, Add a Marker to the entity by fetching the associated allocator.
This will be applied on the next world.maintain().
Examples
use specs::prelude::*; use specs::saveload::{MarkedBuilder, U64Marker, U64MarkerAllocator}; let mut world = World::new(); world.register::<U64Marker>(); world.add_resource(U64MarkerAllocator::new()); let my_entity = lazy .create_entity(&entities) /* .with(Component1) */ .marked::<U64Marker>() .build();
Panics
Panics during world.maintain() in case there's no allocator
added to the World.
impl<'a> Builder for LazyBuilder<'a>[src]
impl<'a> Builder for LazyBuilder<'a>fn with<C>(self, component: C) -> Self where
C: Component + Send + Sync, [src]
fn with<C>(self, component: C) -> Self where
C: Component + Send + Sync, Inserts a component using LazyUpdate.
If a component was already associated with the entity, it will overwrite the previous component.
fn build(self) -> Entity[src]
fn build(self) -> EntityFinishes the building and returns the built entity.
Please note that no component is associated to this
entity until you call World::maintain.
Auto Trait Implementations
impl<'a> Send for LazyBuilder<'a>
impl<'a> Send for LazyBuilder<'a>impl<'a> Sync for LazyBuilder<'a>
impl<'a> Sync for LazyBuilder<'a>Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeIdimpl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut Timpl<T> Resource for T where
T: Any + Send + Sync, [src]
impl<T> Resource for T where
T: Any + Send + Sync, impl<T> Any for T where
T: Any, [src]
impl<T> Any for T where
T: Any, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeIdimpl<T> Erased for T
impl<T> Erased for Timpl<T> Event for T where
T: Send + Sync + 'static, [src]
impl<T> Event for T where
T: Send + Sync + 'static, impl<T> Erased for T
impl<T> Erased for T