Trait IsFragment

Source
pub trait IsFragment: Sync {
    // Required methods
    fn bsql_extend_text(&self, s: &mut String);
    fn bsql_extend_params<'v, 'p: 'v>(&'p self, p: &mut Vec<DynToSql<'v>>);
    fn bsql_note_locs(&self, la: &mut CodeLocationAccumulator<'_>);
}

Required Methods§

Source

fn bsql_extend_text(&self, s: &mut String)

Source

fn bsql_extend_params<'v, 'p: 'v>(&'p self, p: &mut Vec<DynToSql<'v>>)

Source

fn bsql_note_locs(&self, la: &mut CodeLocationAccumulator<'_>)

Implementors§