1 2 3 4 5 6 7 8 9 10 11
use std::convert::Into; use Element; use format::Conventional; impl<T: Element> Into<Vec<T>> for Conventional<T> { #[inline] fn into(self) -> Vec<T> { self.values } }
1 2 3 4 5 6 7 8 9 10 11
use std::convert::Into; use Element; use format::Conventional; impl<T: Element> Into<Vec<T>> for Conventional<T> { #[inline] fn into(self) -> Vec<T> { self.values } }