Struct MaskedStorage

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

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

Implementations§

Source§

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

Source

pub fn new(inner: <T as Component>::Storage) -> MaskedStorage<T>

Creates a new MaskedStorage. This is called when you register a new component type within the world.

Source

pub fn clear(&mut self)

Clear the contents of this storage.

Source

pub fn remove(&mut self, id: u32) -> Option<T>

Remove an element by a given index.

Source

pub fn drop(&mut self, id: u32)

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])

Drop components of given entities.
Source§

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

Source§

fn default() -> MaskedStorage<T>

Returns the “default value” for a type. Read more
Source§

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

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

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> TryDefault for T
where T: Default,

Source§

fn try_default() -> Result<T, String>

Tries to create the default.
Source§

fn unwrap_default() -> Self

Calls try_default and panics on an error case.
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> Erased for T

Source§

impl<T> Event for T
where T: Send + Sync + 'static,

Source§

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