Struct oxygengine_core::ecs::NullStorage[][src]

pub struct NullStorage<T>(_);
Expand description

A null storage type, used for cases where the component doesn’t contain any data and instead works as a simple flag.

Trait Implementations

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

Clean the storage given a bitset with bits set for valid indices. Allows us to safely drop the storage. Read more

Tries reading the data associated with an Index. This is unsafe because the external set used to protect this storage is absent. Read more

Tries mutating the data associated with an Index. This is unsafe because the external set used to protect this storage is absent. Read more

Inserts new data for a given Index. Read more

Removes the data associated with an Index. Read more

Drops the data associated with an Index. This is simply more efficient than remove and can be used if the data is no longer needed. Read more

This is safe because you cannot mutate ZSTs.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Tries to create the default.

Calls try_default and panics on an error case.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.