Struct specs::world::Generation
source · [−]pub struct Generation(_);
Expand description
Index generation. When a new entity is placed at an old index,
it bumps the Generation
by 1. This allows to avoid using components
from the entities that were deleted.
Implementations
Trait Implementations
sourceimpl Clone for Generation
impl Clone for Generation
sourcefn clone(&self) -> Generation
fn clone(&self) -> Generation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Generation
impl Debug for Generation
sourceimpl Hash for Generation
impl Hash for Generation
sourceimpl Ord for Generation
impl Ord for Generation
sourceimpl PartialEq<Generation> for Generation
impl PartialEq<Generation> for Generation
sourcefn eq(&self, other: &Generation) -> bool
fn eq(&self, other: &Generation) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Generation) -> bool
fn ne(&self, other: &Generation) -> bool
This method tests for !=
.
sourceimpl PartialOrd<Generation> for Generation
impl PartialOrd<Generation> for Generation
sourcefn partial_cmp(&self, other: &Generation) -> Option<Ordering>
fn partial_cmp(&self, other: &Generation) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for Generation
impl Eq for Generation
impl StructuralEq for Generation
impl StructuralPartialEq for Generation
Auto Trait Implementations
impl RefUnwindSafe for Generation
impl Send for Generation
impl Sync for Generation
impl Unpin for Generation
impl UnwindSafe for Generation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more