[][src]Struct gvec::SoftVec

pub struct SoftVec<T>(_);

Soft version of a Vec with Generational scheme

Similar to the LightVec, the SoftVec is a data structure with a so-called Generational scheme, that functions as a versioning scheme for indices. In contrast to LightVec, there isn't an implemented allocator for the SoftVec. Instead, there is a trait that must be implemented in order to provide the Generational indices.

Methods

impl<T> SoftVec<T>[src]

pub fn with_capacity(capacity: usize) -> SoftVec<T>[src]

Creates a new SoftVec

Creates a new SoftVec, with the given capacity, in order to reduce initial allocations

pub fn get(
    &self,
    index: &GenerationalIndex,
    alloc: &mut impl SoftAlloc
) -> Option<&T>
[src]

Returns a value with the given index

pub fn insert(
    &mut self,
    value: T,
    alloc: &mut impl SoftAlloc
) -> GenerationalIndex
[src]

Inserts a value on the vector

pub fn remove(
    &mut self,
    index: GenerationalIndex,
    alloc: &mut impl SoftAlloc
) -> Result<(), Error>
[src]

Removes a value with the given index

Auto Trait Implementations

impl<T> Send for SoftVec<T> where
    T: Send

impl<T> Sync for SoftVec<T> where
    T: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]