Struct MaskedStorage

Source
pub struct MaskedStorage<T: Component> { /* private fields */ }
Expand description

The Storage together with the BitSet that knows about which elements are stored, and which are not.

Implementations§

Source§

impl<T: Component> MaskedStorage<T>

Source

pub fn new(inner: T::Storage) -> Self

Create new masked storage.

Source

pub fn mask(&self) -> &BitSet

Get the mask of living elements.

Source

pub fn storage(&self) -> &T::Storage

Get areference to the inner storage.

Source

pub fn storage_mut(&mut self) -> &mut T::Storage

Get a mutable reference to the inner storage.

Source

pub fn insert(&mut self, entity: Entity, component: T) -> Option<T>

Insert new element

Source

pub fn clear(&mut self)

Clear the contents of this storage.

Source

pub fn remove(&mut self, index: Index) -> Option<T>

Remove an element by a given index.

Source

pub fn drop(&mut self, index: Index)

Drop an element by a given index.

Trait Implementations§

Source§

impl<T> AnyStorage for MaskedStorage<T>
where T: Component,

Source§

fn drop(&mut self, entities: &[Entity])

Auto Trait Implementations§

§

impl<T> Freeze for MaskedStorage<T>
where <T as Component>::Storage: Freeze,

§

impl<T> RefUnwindSafe for MaskedStorage<T>

§

impl<T> Send for MaskedStorage<T>

§

impl<T> Sync for MaskedStorage<T>

§

impl<T> Unpin for MaskedStorage<T>
where <T as Component>::Storage: Unpin,

§

impl<T> UnwindSafe for MaskedStorage<T>
where <T as Component>::Storage: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Any for T
where T: Any,

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Resource for T
where T: Any + Send + Sync,