pub trait RawStore {
type Elem;
}
Expand description
The RawStore
trait provides a generalized interface for all containers. The trait is
sealed, preventing any external implementations and is primarily used as the basis for
other traits, such as Sequential
.