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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
use AnnotationCoordinates;
use crate;
use ;
/// The input type for [`Blueprint::config`].
///
/// Check out [`Blueprint::config`] for more information on how to manage configuration types
/// in Pavex.
///
/// # Stability guarantees
///
/// Use the [`config`](macro@crate::config) attribute macro to create instances of `Config`.\
/// `Config`'s fields are an implementation detail of Pavex's macros and should not be relied upon:
/// newer versions of Pavex may add, remove or modify its fields.
///
/// [`Blueprint::config`]: crate::Blueprint::config
/// A configuration type registered via [`Blueprint::config`].
///
/// # Example
///
/// You can use the methods exposed by [`RegisteredConfig`] to tune the behaviour
/// of the registered configuration type.
/// For example, instruct Pavex to use the `Default` implementation if the user configuration
/// doesn't specify a value for `pool`:
///
/// ```rust
/// use pavex::{config, Blueprint};
///
/// #[config(key = "pool")]
/// #[derive(serde::Deserialize, Debug, Clone)]
/// pub struct PoolConfig {
/// pub max_n_connections: u32,
/// pub min_n_connections: u32,
/// }
///
/// impl Default for PoolConfig {
/// fn default() -> Self {
/// Self {
/// max_n_connections: 10,
/// min_n_connections: 2,
/// }
/// }
/// }
///
/// let mut bp = Blueprint::new();
/// // This is equivalent to `#[config(key = "pool", default_if_missing)]`
/// bp.config(POOL_CONFIG).default_if_missing();
/// ```
///
/// # Example: override the annotation
///
/// You can also override the behaviour specified via the [`config`](macro@crate::config) attribute.
///
/// ```rust
/// use pavex::{config, Blueprint};
///
/// #[config(key = "pool", default_if_missing)]
/// #[derive(serde::Deserialize, Debug, Clone)]
/// pub struct PoolConfig {
/// pub max_n_connections: u32,
/// pub min_n_connections: u32,
/// }
///
/// # impl Default for PoolConfig {
/// # fn default() -> Self {
/// # Self {
/// # max_n_connections: 10,
/// # min_n_connections: 2,
/// # }
/// # }
/// # }
/// #
/// let mut bp = Blueprint::new();
/// // Using `required`, we are overriding the `default_if_missing` flag
/// // specified via the `config` attribute.
/// // This is equivalent to `#[config(key = "pool")]`, thus restoring
/// // the default behaviour.
/// bp.config(POOL_CONFIG).required();
/// ```
///
/// [`Blueprint::config`]: crate::Blueprint::config