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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more