Function transmute_vector

Source
pub fn transmute_vector<S, D>(vector: Vec<S>) -> Vec<D>
where S: Sized, D: Sized,
Expand description
  • Transmute vector, change its type, but not by cloning it or changing its memory location or capacity.
  • Will panic or crash if you don’t know what you are doing.