Trait diesel::prelude::JoinTo
[−]
[src]
pub trait JoinTo<T> { }
Indicates that two tables can be used together in a JOIN clause. Implementations of this trait will be generated for you automatically by the association annotations from codegen.
Implementors
impl<Lhs, Rhs, On> JoinTo<OnClauseWrapper<Rhs, On>> for Lhs where
Lhs: Table, type FromClause = Rhs; type OnClause = On;