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:
name
is the name of the columnv
is the value in that column for this row