pub trait QueryBody: DynClone + Debug {
// Required method
fn build(
&self,
ctx: &mut PgQueryCtx,
path: &Vector<String>,
res_count: QueryResCount,
) -> (ExprType, Tokens);
}pub trait QueryBody: DynClone + Debug {
// Required method
fn build(
&self,
ctx: &mut PgQueryCtx,
path: &Vector<String>,
res_count: QueryResCount,
) -> (ExprType, Tokens);
}