1 2 3 4 5
use crate::{plan::StatementPlan, result::Result}; pub trait Build { fn build(self) -> Result<StatementPlan>; }