Struct specs::NullStorage
source · [−]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
sourceimpl<T> Default for NullStorage<T> where
T: Default,
impl<T> Default for NullStorage<T> where
T: Default,
sourceimpl<T> UnprotectedStorage<T> for NullStorage<T> where
T: Default,
impl<T> UnprotectedStorage<T> for NullStorage<T> where
T: Default,
sourceunsafe fn clean<B>(&mut self, _has: B) where
B: BitSetLike,
unsafe fn clean<B>(&mut self, _has: B) where
B: BitSetLike,
Clean the storage given a bitset with bits set for valid indices. Allows us to safely drop the storage. Read more
sourceunsafe fn get(&self, _: Index) -> &T
unsafe fn get(&self, _: Index) -> &T
Tries reading the data associated with an Index
.
This is unsafe because the external set used
to protect this storage is absent. Read more
sourceunsafe fn get_mut(&mut self, _: Index) -> &mut T
unsafe fn get_mut(&mut self, _: Index) -> &mut T
Tries mutating the data associated with an Index
.
This is unsafe because the external set used
to protect this storage is absent. Read more
impl<T> DistinctStorage for NullStorage<T>
This is safe because you cannot mutate ZSTs.
Auto Trait Implementations
impl<T> RefUnwindSafe for NullStorage<T> where
T: RefUnwindSafe,
impl<T> Send for NullStorage<T> where
T: Send,
impl<T> Sync for NullStorage<T> where
T: Sync,
impl<T> Unpin for NullStorage<T> where
T: Unpin,
impl<T> UnwindSafe for NullStorage<T> where
T: UnwindSafe,
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
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> TryDefault for T where
T: Default,
impl<T> TryDefault for T where
T: Default,
sourcefn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
sourcefn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls try_default
and panics on an error case.