pub trait CastableVector<T> {
    fn to(&self) -> Vec<T>;
}

Required methods

Implementations on Foreign Types

Implementors