Struct wgpu_core::storage::Storage

source ·
pub struct Storage<T, I: TypedId> {
    pub(crate) map: Vec<Element<T>>,
    pub(crate) kind: &'static str,
    pub(crate) _phantom: PhantomData<I>,
}
Expand description

A table of T values indexed by the id type I.

The table is represented as a vector indexed by the ids’ index values, so you should use an id allocator like IdentityManager that keeps the index values dense and close to zero.

Fields§

§map: Vec<Element<T>>§kind: &'static str§_phantom: PhantomData<I>

Implementations§

source§

impl<T, I: TypedId> Storage<T, I>

source

pub(crate) fn contains(&self, id: I) -> bool

source

pub(crate) fn try_get(&self, id: I) -> Result<Option<&T>, InvalidId>

Attempts to get a reference to an item behind a potentially invalid ID.

Returns None if there is an epoch mismatch, or the entry is empty.

This function is primarily intended for the as_hal family of functions where you may need to fallibly get a object backed by an id that could be in a different hub.

source

pub(crate) fn get(&self, id: I) -> Result<&T, InvalidId>

Get a reference to an item behind a potentially invalid ID. Panics if there is an epoch mismatch, or the entry is empty.

source

pub(crate) fn get_mut(&mut self, id: I) -> Result<&mut T, InvalidId>

Get a mutable reference to an item behind a potentially invalid ID. Panics if there is an epoch mismatch, or the entry is empty.

source

pub(crate) unsafe fn get_unchecked(&self, id: u32) -> &T

source

pub(crate) fn label_for_invalid_id(&self, id: I) -> &str

source

fn insert_impl(&mut self, index: usize, element: Element<T>)

source

pub(crate) fn insert(&mut self, id: I, value: T)

source

pub(crate) fn insert_error(&mut self, id: I, label: &str)

source

pub(crate) fn force_replace(&mut self, id: I, value: T)

source

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

source

pub(crate) fn _try_remove(&mut self, id: I) -> Option<T>

source

pub(crate) fn iter(&self, backend: Backend) -> impl Iterator<Item = (I, &T)>

source

pub(crate) fn len(&self) -> usize

source

pub(crate) fn generate_report(&self) -> StorageReport

Trait Implementations§

source§

impl<T: Debug, I: Debug + TypedId> Debug for Storage<T, I>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, I: TypedId> Index<Valid<I>> for Storage<T, I>

§

type Output = T

The returned type after indexing.
source§

fn index(&self, id: Valid<I>) -> &T

Performs the indexing (container[index]) operation. Read more
source§

impl<T, I: TypedId> IndexMut<Valid<I>> for Storage<T, I>

source§

fn index_mut(&mut self, id: Valid<I>) -> &mut T

Performs the mutable indexing (container[index]) operation. Read more

Auto Trait Implementations§

§

impl<T, I> RefUnwindSafe for Storage<T, I>where I: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, I> Send for Storage<T, I>where I: Send, T: Send,

§

impl<T, I> Sync for Storage<T, I>where I: Sync, T: Sync,

§

impl<T, I> Unpin for Storage<T, I>where I: Unpin, T: Unpin,

§

impl<T, I> UnwindSafe for Storage<T, I>where I: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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> WasmNotSend for Twhere T: Send,

source§

impl<T> WasmNotSync for Twhere T: Sync,