pub trait Joinable<'a> {
    // Required method
    fn on<T>(self, conditions: T) -> JoinData<'a>
       where T: Into<ConditionTree<'a>>;
}
Expand description

An item that can be joined.

Required Methods§

source

fn on<T>(self, conditions: T) -> JoinData<'a>
where T: Into<ConditionTree<'a>>,

Add the JOIN conditions.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a> Joinable<'a> for JoinData<'a>

source§

impl<'a, U> Joinable<'a> for U
where U: Into<Table<'a>>,