1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
pub mod builder; pub mod condition; pub mod statement; pub struct Arg { pub value: String, pub ty: String, } #[derive(Default)] pub struct Query { pub placeholders: String, pub fields: String, pub args: Vec<Arg>, }