Trait grafbase_sql_ast::ast::Joinable
source · 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§
sourcefn on<T>(self, conditions: T) -> JoinData<'a>where
T: Into<ConditionTree<'a>>,
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.