Struct rsynth::vecstorage::VecStorage[]

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>

pub fn with_capacity(capacity: usize) -> VecStorage<T>

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

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<TGuard>(&'s mut self) -> VecGuard<'s, T, TGuard>

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 for VecStorage<T> where
    T: Debug

impl<T> Drop for VecStorage<T>

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

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

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]

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

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

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 

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

impl<S> FromSample<S> for S

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

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 

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.