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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//! Compile tests for docs/library/economic.md
//!
//! Requires the `fred` feature flag:
//! cargo test --test doc_economic --features fred
//!
//! Runtime behavior of the economic series path is covered without network
//! access by the mock + unit tests in `src/adapters/fred/mod.rs`,
//! `src/adapters/alphavantage/economic/mod.rs`, and
//! `src/adapters/polygon/economic/mod.rs` (mocked HTTP / DTO → canonical
//! `EconomicSeries`).
use EconomicSeries;
use MacroObservation;
// ---------------------------------------------------------------------------
// Model fields — compile-time verification
// ---------------------------------------------------------------------------
/// Verifies EconomicSeries fields documented in economic.md exist with correct types.
/// Never called; exists only for the compiler to type-check.
/// Verifies MacroObservation fields documented in economic.md.
// ---------------------------------------------------------------------------
// Capability and Provider constants — compile-time verification
// ---------------------------------------------------------------------------
/// Verifies Capability::ECONOMIC and Provider::Fred exist as documented.
// ---------------------------------------------------------------------------
// FRED initialization — compile-time verification
// ---------------------------------------------------------------------------
/// Verifies fred::init compiles with the documented pattern from economic.md.
/// Never called; exists only to ensure the compile-time pattern is valid.
// ---------------------------------------------------------------------------
// Compile-time: handle API — mirrors the setup block in economic.md
// ---------------------------------------------------------------------------
/// Verifies the documented `EconomicIndicator` flow type-checks:
/// providers.economic("GDP") → series()
/// Never called; exists only for the compiler to type-check. Runtime behavior
/// is covered by the mock + unit tests in `src/adapters/fred/mod.rs`.
async