1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#[doc(hidden)]
pub mod filter;
#[doc(hidden)]
pub mod joins;
use backend::Backend;
use expression::{Expression, SelectableExpression, NonAggregate};
use query_builder::*;
#[doc(hidden)]
pub use self::joins::{InnerJoinSource, LeftOuterJoinSource};
use types::{FromSqlRow, HasSqlType};
pub use self::joins::JoinTo;
pub trait Queryable<ST, DB> where
DB: Backend + HasSqlType<ST>,
{
type Row: FromSqlRow<ST, DB>;
fn build(row: Self::Row) -> Self;
}
#[doc(hidden)]
pub trait QuerySource {
type FromClause;
fn from_clause(&self) -> Self::FromClause;
}
pub trait Column: Expression {
type Table: Table;
fn name() -> &'static str;
}
pub trait Table: QuerySource + AsQuery + Sized {
type PrimaryKey: SelectableExpression<Self> + NonAggregate;
type AllColumns: SelectableExpression<Self> + NonAggregate;
fn primary_key(&self) -> Self::PrimaryKey;
fn all_columns() -> Self::AllColumns;
fn inner_join<T>(self, other: T) -> InnerJoinSource<Self, T> where
T: Table,
Self: JoinTo<T, joins::Inner>,
{
InnerJoinSource::new(self, other)
}
fn left_outer_join<T>(self, other: T) -> LeftOuterJoinSource<Self, T> where
T: Table,
Self: JoinTo<T, joins::LeftOuter>,
{
LeftOuterJoinSource::new(self, other)
}
}