pub trait JoinTable<'post_query> {
    // Required method
    fn build(self, s: &mut String, lookup: &mut Vec<Value<'post_query>>);
}
Expand description

Trait representing a join table builder.

Required Methods§

source

fn build(self, s: &mut String, lookup: &mut Vec<Value<'post_query>>)

Method to build a join table expression.

Parameter:

  • s: Mutable reference to String to write to.
  • lookup: List of values for bind parameter.

Implementors§

source§

impl<'until_build, 'post_query> JoinTable<'post_query> for JoinTableImpl<'until_build, 'post_query>