pub fn cast_vec<FROM: 'static + Copy, TO: 'static + Copy>(
    vec: Vec<FROM>
) -> Vec<TO>
Expand description

Cast a Vec from one type to another.

See crate::cast for more information