pub trait ToThinVec<T> {
    // Required method
    fn to_thinvec(&self) -> ThinVec<T>;
}

Required Methods§

source

fn to_thinvec(&self) -> ThinVec<T>

Implementations on Foreign Types§

source§

impl<T: Clone> ToThinVec<T> for [T]

source§

fn to_thinvec(&self) -> ThinVec<T>

Implementors§