pub struct L8r<W>(/* private fields */);
Implementations§
Source§impl<W> L8r<W>where
W: ContainsHecsWorld,
impl<W> L8r<W>where
W: ContainsHecsWorld,
pub fn insert_one<C: Component>(&mut self, ent: Entity, component: C)
pub fn remove_one<C: Component>(&mut self, ent: Entity)
pub fn insert<C: 'static + Send + Sync + DynamicBundle>( &mut self, ent: Entity, components_bundle: C, )
pub fn spawn<C: 'static + Send + Sync + DynamicBundle>( &mut self, components_bundle: C, )
pub fn despawn(&mut self, entity: Entity)
Auto Trait Implementations§
impl<W> Freeze for L8r<W>
impl<W> !RefUnwindSafe for L8r<W>
impl<W> !Send for L8r<W>
impl<W> !Sync for L8r<W>
impl<W> Unpin for L8r<W>
impl<W> !UnwindSafe for L8r<W>
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