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

Trait representing a join table builder.

Required Methods

Method to build a join table expression.

Parameter:

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

Implementors