1
2
3
4
5
6
7
use super::Row;

impl AsRef<Row> for Row {
    fn as_ref(&self) -> &Row {
        self
    }
}