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§
Sourcefn visit_value(&mut self, name: &str, v: CellValue)
fn visit_value(&mut self, name: &str, v: CellValue)
Visit a value in the row, where:
nameis the name of the columnvis the value in that column for this row