pub trait CellVisitor {
    fn visit_value(&mut self, name: &str, v: CellValue);
}
Expand description

Something that can visit the values in a Django output row.

Required methods

Visit a value in the row, where:

  • name is the name of the column
  • v is the value in that column for this row

Implementors