Trait Route

Source
pub trait Route {
    // Required methods
    fn matches_uri(&self, uri: String) -> bool;
    fn get_schema(&self) -> &SqlTableSchema;
}

Required Methods§

Implementors§