Trait django_query::row::CellVisitor
source · [−]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
fn 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