Struct vecstorage::VecStorage[][src]

pub struct VecStorage<T> { /* fields omitted */ }

Re-usable memory for creating a vector of references.

See the module-level documentation for more information.

Implementations

impl<T> VecStorage<T>[src]

pub fn with_capacity(capacity: usize) -> Self[src]

Create a new VecStorage<T> with the provided capacity.

Example

use vecstorage::VecStorage;

let storage = VecStorage::<u32>::with_capacity(5);
assert_eq!(storage.capacity(), 5);

pub fn capacity(&self) -> usize[src]

Get the capacity of the VecStorage.

Example

use vecstorage::VecStorage;

let storage = VecStorage::<u32>::with_capacity(5);
assert_eq!(storage.capacity(), 5);

pub fn vec_guard<'s, TGuard>(&'s mut self) -> VecGuard<'s, T, TGuard>[src]

Creates a new VecGuard using the memory allocated by self. This VecGuard` will automatically clear the vector when it goes out of scope.

Panics

Panics if TGuard doesn’t have the same size and alignment as T.

Panics if mem::forget() was called on a VecGuard that was created previously on the same VecStorage.

Example

use vecstorage::VecStorage;

let mut storage = VecStorage::<u32>::with_capacity(2);
{
   let mut guard = storage.vec_guard();
   assert_eq!(guard.capacity(), 2);
   assert_eq!(guard.len(), 0);
   guard.push(3);
   guard.push(2);
}
{
   let mut guard = storage.vec_guard::<u32>();
   assert_eq!(guard.capacity(), 2); // The memory of the `storage` is reused
   assert_eq!(guard.len(), 0);      // But its contents has been "cleared".
}

Trait Implementations

impl<T: Debug> Debug for VecStorage<T>[src]

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

Formats the value using the given formatter. Read more

impl<T> Drop for VecStorage<T>[src]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

impl<T> Send for VecStorage<T> where
    T: Send
[src]

impl<T> Sync for VecStorage<T> where
    T: Sync
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for VecStorage<T> where
    T: RefUnwindSafe

impl<T> Unpin for VecStorage<T> where
    T: Unpin

impl<T> UnwindSafe for VecStorage<T> where
    T: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.