pub trait ToSmallVec<A: Array> {
    fn to_smallvec(&self) -> SmallVec<A>Notable traits for SmallVec<A>impl<A: Array<Item = u8>> Write for SmallVec<A>;
}
Expand description

Convenience trait for constructing a SmallVec

Required Methods

Construct a new SmallVec from a slice.

Implementations on Foreign Types

Implementors