pub trait ColumnVisitor {
    fn visit_column(&mut self, name: &str);
}
Expand description

Something that can visit the columns that a Django output row sequence contains.

Required methods

Visit a column in the row where:

  • name is the name of the column

Implementors