pub struct EntityData<'a, T: ComponentManager>(/* private fields */);
Trait Implementations§
Source§impl<'a, T: ComponentManager> Clone for EntityData<'a, T>
impl<'a, T: ComponentManager> Clone for EntityData<'a, T>
Source§fn clone(&self) -> EntityData<'a, T>
fn clone(&self) -> EntityData<'a, T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a, T: ComponentManager> Deref for EntityData<'a, T>
impl<'a, T: ComponentManager> Deref for EntityData<'a, T>
Source§type Target = IndexedEntity<T>
type Target = IndexedEntity<T>
The resulting type after dereferencing.
Source§fn deref(&self) -> &IndexedEntity<T>
fn deref(&self) -> &IndexedEntity<T>
Dereferences the value.
impl<'a, T: ComponentManager> Copy for EntityData<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for EntityData<'a, T>
impl<'a, T> RefUnwindSafe for EntityData<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for EntityData<'a, T>where
T: Sync,
impl<'a, T> Sync for EntityData<'a, T>where
T: Sync,
impl<'a, T> Unpin for EntityData<'a, T>
impl<'a, T> UnwindSafe for EntityData<'a, T>where
T: RefUnwindSafe,
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