suchbar 1.0.4

suchbar - enduser-learnable-language for database queries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]

mod comp_op;
mod db_field;
mod error;
mod sql_term;
mod suchbar;

#[macro_use]
extern crate pest_derive;

pub use crate::db_field::{DbField, DbType};
pub use crate::error::SuchError;
pub use crate::suchbar::{SuchOptions, Suchbar, WhereClause};