pub type BindGroupLayouts<A> = Storage<BindGroupLayout<A>, BindGroupLayoutId>;

Aliased Type§

struct BindGroupLayouts<A> {
    pub(crate) map: Vec<Element<BindGroupLayout<A>>, Global>,
    pub(crate) kind: &'static str,
    pub(crate) _phantom: PhantomData<Id<BindGroupLayout<Api>>>,
}

Fields§

§map: Vec<Element<BindGroupLayout<A>>, Global>§kind: &'static str§_phantom: PhantomData<Id<BindGroupLayout<Api>>>

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