Enum mgf::PoolEntry[][src]

pub enum PoolEntry<T> {
    FreeListEnd,
    FreeListPtr {
        next_free: usize,
    },
    Occupied(T),
}

Internal storage type used by Pool.

Variants

Fields of FreeListPtr

Trait Implementations

impl<T> Clone for PoolEntry<T> where
    T: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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