pub trait IntoThinVec<T> {
    // Required method
    fn into_thinvec(self) -> ThinVec<T>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<T> IntoThinVec<T> for Box<[T]>

Implementors§