Skip to main content

Build

Trait Build 

Source
pub trait Build<'q> {
    // Required method
    fn build(self) -> (String, Vec<&'q (dyn ToSql + Sync)>);
}

Required Methods§

Source

fn build(self) -> (String, Vec<&'q (dyn ToSql + Sync)>)

Implementors§

Source§

impl<'q, T> Build<'q> for Clause<'q, T>