pub enum EntityActionType {
SpawnEntity,
DespawnEntity,
InsertComponent,
RemoveComponent,
Noop,
}Variants§
Trait Implementations§
Source§impl Clone for EntityActionType
impl Clone for EntityActionType
Source§fn clone(&self) -> EntityActionType
fn clone(&self) -> EntityActionType
Returns a duplicate 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 PartialEq for EntityActionType
impl PartialEq for EntityActionType
Source§impl Serde for EntityActionType
impl Serde for EntityActionType
impl Copy for EntityActionType
impl StructuralPartialEq for EntityActionType
Auto Trait Implementations§
impl Freeze for EntityActionType
impl RefUnwindSafe for EntityActionType
impl Send for EntityActionType
impl Sync for EntityActionType
impl Unpin for EntityActionType
impl UnwindSafe for EntityActionType
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