Trait ColumnVisitor

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

Visit the columns that a Django output row for a given type will contain.

Required Methods§

Source

fn visit_column(&mut self, name: &str)

Visit a column in the row where:

  • name is the name of the column

Implementors§