Make ToSmallVec trait public

This commit is contained in:
Matt Brubeck
2020-04-05 17:30:38 -07:00
parent 88c32dfc0e
commit b613bc48c2
+3 -1
View File
@@ -1697,7 +1697,9 @@ impl_array!(
0x40000, 0x60000, 0x80000, 0x10_0000
);
trait ToSmallVec<A:Array> {
/// Convenience trait for constructing a `SmallVec`
pub trait ToSmallVec<A:Array> {
/// Construct a new `SmallVec` from a slice.
fn to_smallvec(&self) -> SmallVec<A>;
}