gluesql-core 0.20.0

GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!
Documentation
1
2
3
4
5
use crate::{plan::StatementPlan, result::Result};

pub trait Build {
    fn build(self) -> Result<StatementPlan>;
}