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
use ;
use Name;
use ;
use stmt;
/// A Rust field type that represents a `#[has_many]` relation.
///
/// Implemented by [`Vec<M>`](Vec) (eager) and
/// [`Deferred<Vec<M>>`](super::Deferred) (lazy) where `M: Model`. The set of
/// impls is the source of truth for which Rust shapes are valid as a
/// has-many field: anything outside those two combinations does not satisfy
/// the trait.
///
/// A direct `#[has_many]` pairs with a `BelongsTo` on its target. A
/// `#[has_many(via = ...)]` follows a relation path instead. Many-to-many
/// models use a direct field for join-model records and a `via` field for the
/// opposite endpoints.