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