[][src]Trait heaparray::Container

pub trait Container {
    fn len(&self) -> usize;
}

Trait for a simple container.

Required methods

fn len(&self) -> usize

Get the size of the container.

Loading content...

Implementors

impl<A, R, E, L> Container for RcArray<A, R, E, L> where
    A: LabelledArray<E, R>,
    R: RefCounter<L>, 
[src]

impl<E, L, P> Container for SafeArray<E, L, P> where
    P: SafeArrayPtr<E, L>, 
[src]

Loading content...