pub trait Parser {
    fn process_tables(&mut self, tables: Metadata);

    fn query_all_tables(&self) -> (&'static str, &'static [&'static dyn ToSql]) { ... }
}
Expand description

Implement this trait to parse your own types

Required Methods

Provided Methods

Implementors