Struct wgpu_core::weak_vec::WeakVec

source ·
pub(crate) struct WeakVec<T> {
    inner: Vec<Option<Weak<T>>>,
    empty_slots: Vec<usize>,
    scan_slots_on_next_push: bool,
}
Expand description

An optimized container for Weak references of T that minimizes reallocations by dropping older elements that no longer have strong references to them.

Fields§

§inner: Vec<Option<Weak<T>>>§empty_slots: Vec<usize>§scan_slots_on_next_push: bool

Implementations§

source§

impl<T> WeakVec<T>

source

pub(crate) fn new() -> Self

source

pub(crate) fn push(&mut self, value: Weak<T>)

Pushes a new element to this collection.

If the inner Vec needs to be reallocated, we will first drop older elements that no longer have strong references to them.

Trait Implementations§

source§

impl<T: Debug> Debug for WeakVec<T>

source§

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

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

impl<T> Default for WeakVec<T>

source§

fn default() -> Self

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

impl<T> IntoIterator for WeakVec<T>

§

type Item = Weak<T>

The type of the elements being iterated over.
§

type IntoIter = WeakVecIter<T>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<T> Freeze for WeakVec<T>

§

impl<T> RefUnwindSafe for WeakVec<T>
where T: RefUnwindSafe,

§

impl<T> Send for WeakVec<T>
where T: Sync + Send,

§

impl<T> Sync for WeakVec<T>
where T: Sync + Send,

§

impl<T> Unpin for WeakVec<T>

§

impl<T> UnwindSafe for WeakVec<T>
where T: RefUnwindSafe,

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> 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> Downcast<T> for T

source§

fn downcast(&self) -> &T

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, U> TryFrom<U> for T
where 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 T
where 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> Upcast<T> for T

source§

fn upcast(&self) -> Option<&T>

source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSendSync for T

source§

impl<T> WasmNotSync for T
where T: Sync,