Trait ToSmallVec
pub trait ToSmallVec<A>where
A: Array,{
// Required method
fn to_smallvec(&self) -> SmallVec<A>;
}Available on crate feature
wayland and Linux only.Expand description
Convenience trait for constructing a SmallVec
Required Methods§
fn to_smallvec(&self) -> SmallVec<A>
fn to_smallvec(&self) -> SmallVec<A>
Construct a new SmallVec from a slice.