pub trait TryWithSlots: Sized {
    fn try_with_slots(len: usize) -> Result<Self, WithSlotsError>;
}

Required Methods

Creates new container with specified slots number.

Implementations on Foreign Types

Implementors