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

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