pub trait RowFormat {
// Required methods
fn to_stored_format(
&self,
ts: Timestamp,
from: &str,
dest: &mut Vec<u8>,
) -> Result<(), String>;
fn elements(&self) -> &[Box<dyn Element>];
fn row_size(&self) -> Option<usize>;
}Expand description
Decodes a row by its format. Created with parse_row_format.