1use crate::{Column, Index}; 2 3impl From<Index> for Column { 4 fn from(index: Index) -> Self { 5 Column::new(index) 6 } 7}