1use crate::ValueFormatProvider; 2use crate::types::{Row, ValueFormat}; 3 4impl ValueFormatProvider for Row { 5 fn value_format() -> ValueFormat { 6 ValueFormat::Simple 7 } 8}