1
2
3
4
5
6
7
use crate::{Column, Index};

impl From<Index> for Column {
    fn from(index: Index) -> Self {
        Column::new(index)
    }
}