Trait Capacity
cl_traits
pub trait Capacity { type Output; fn capacity(&self) -> Self::Output; }
Has some sort of storage that holds a maximum number of elements.
type Output
Output type for the capacity` method.
capacity
fn capacity(&self) -> Self::Output
The number of elements that can be holded.