Trait sqlite_parser::Parser

source ·
pub trait Parser {
    // Required method
    fn process_tables(&mut self, tables: Metadata);

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

Implement this trait to parse your own types

Required Methods§

source

fn process_tables(&mut self, tables: Metadata)

Provided Methods§

source

fn query_all_tables(&self) -> (&'static str, &'static [&'static dyn ToSql])

Implementors§