1
2
3
4
5
6
7
8
9
10
11
use std::convert::Into;

use format::Conventional;
use Element;

impl<T: Element> Into<Vec<T>> for Conventional<T> {
    #[inline]
    fn into(self) -> Vec<T> {
        self.values
    }
}