Struct shiv::world::EntityIdSet
source · pub struct EntityIdSet { /* private fields */ }Implementations§
source§impl EntityIdSet
impl EntityIdSet
pub fn new() -> Self
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn resize(&mut self, len: usize, value: bool)
pub fn insert(&mut self, index: usize)
pub fn remove(&mut self, index: usize) -> bool
pub fn contains(&self, index: usize) -> bool
pub fn union_with(&mut self, other: &Self)
pub fn intersect_with(&mut self, other: &Self)
pub fn difference_with(&mut self, other: &Self)
pub fn iter(&self) -> Ones<'_>
Trait Implementations§
source§impl Clone for EntityIdSet
impl Clone for EntityIdSet
source§fn clone(&self) -> EntityIdSet
fn clone(&self) -> EntityIdSet
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 Debug for EntityIdSet
impl Debug for EntityIdSet
source§impl Default for EntityIdSet
impl Default for EntityIdSet
source§fn default() -> EntityIdSet
fn default() -> EntityIdSet
Returns the “default value” for a type. Read more
source§impl FromIterator<usize> for EntityIdSet
impl FromIterator<usize> for EntityIdSet
Auto Trait Implementations§
impl RefUnwindSafe for EntityIdSet
impl Send for EntityIdSet
impl Sync for EntityIdSet
impl Unpin for EntityIdSet
impl UnwindSafe for EntityIdSet
Blanket Implementations§
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read moresource§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read moresource§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read moresource§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read more