1 2 3 4 5 6 7
use query_builder::AsQuery; pub trait BelongingToDsl<T> { type Output: AsQuery; fn belonging_to(other: T) -> Self::Output; }
1 2 3 4 5 6 7
use query_builder::AsQuery; pub trait BelongingToDsl<T> { type Output: AsQuery; fn belonging_to(other: T) -> Self::Output; }