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
//! Extract is a feature to let you deserialize request to custom type.
//!
//! You can easily get data from multiple different data sources and assemble it into the type you want.
//! You can define a custom type first, then in `Handler` you can get the data like this:
//!
//! ```
//! # use salvo_core::prelude::*;
//! # use serde::{Deserialize, Serialize};
//! #[derive(Serialize, Deserialize, Extractible, Debug)]
//! // Get the data field value from the body by default.
//! #[extract(default_source(from = "body"))]
//! struct GoodMan<'a> {
//! /// The id number is obtained from the request path parameter, and the data is automatically parsed as i64 type.
//! #[extract(source(from = "param"))]
//! id: i64,
//! /// Reference types can be used to avoid memory copying.
//! username: &'a str,
//! first_name: String,
//! last_name: String,
//! }
//!
//! #[handler]
//! async fn edit(req: &mut Request) {
//! let good_man: GoodMan<'_> = req.extract().await.unwrap();
//! }
//! ```
//!
//! There is considerable flexibility in the definition of data types, and can even be resolved into nested structures as needed:
//!
//! ```
//! # use salvo_core::prelude::*;
//! # use serde::{Deserialize, Serialize};
//! #[derive(Serialize, Deserialize, Extractible, Debug)]
//! #[extract(default_source(from = "body", format = "json"))]
//! struct GoodMan<'a> {
//! #[extract(source(from = "param"))]
//! id: i64,
//! #[extract(source(from = "query"))]
//! username: &'a str,
//! first_name: String,
//! last_name: String,
//! lovers: Vec<String>,
//! /// The nested field is completely reparsed from Request.
//! #[extract(source(from = "request"))]
//! nested: Nested<'a>,
//! }
//!
//! #[derive(Serialize, Deserialize, Extractible, Debug)]
//! #[extract(default_source(from = "body", format = "json"))]
//! struct Nested<'a> {
//! #[extract(source(from = "param"))]
//! id: i64,
//! #[extract(source(from = "query"))]
//! username: &'a str,
//! first_name: String,
//! last_name: String,
//! #[extract(rename = "lovers")]
//! #[serde(default)]
//! pets: Vec<String>,
//! }
//! ```
//!
//! View [full source code](https://github.com/salvo-rs/salvo/blob/main/examples/extract-nested/src/main.rs)
use PhantomData;
use Deserialize;
/// Metadata types.
use crateParseError;
use crateRequest;
pub use Metadata;
/// If a type implements this trait, it will give a metadata, this will help request to extracts data to this type.
/// Wrapper for Extractible type. `Handler`'s parameters does not allow two extractible types has lifetime, wrap these types with `LazyExtract`.