Trait CellVisitor

Source
pub trait CellVisitor {
    // Required method
    fn visit_value(&mut self, name: &str, v: CellValue);
}
Available on crate feature row only.
Expand description

Visit the values in the Django output row for a given value.

Required Methods§

Source

fn visit_value(&mut self, name: &str, v: CellValue)

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§