-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathderive-macro.rs
56 lines (54 loc) · 1.5 KB
/
derive-macro.rs
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
// ! to run, execute: cargo run --bin derive
use xml_derive::Serialize;
#[derive(Debug, Serialize)]
struct Student {
id: usize,
first_name: String,
last_name: String,
major: String,
}
/// # Derive Macro
/// ---------------
///
/// Derive macro is a procedural macro, that generates code from the given token
/// stream. It adds a new input interface to the #[Derive] attribute.
///
/// Some of the builtin procedural macros are as follows:
/// - Debug
/// - Display
/// - Copy
/// - Clone
///
/// We use derive macro to add complex functionality, for example serializing
/// and deserializing our data. In the example below, we have implemented a
/// xml serialization method using the custom derive macro.
///
///
/// To create a derive macro, we have to create a new library create that needs
/// to have a cargo.toml configured to add the following property:
///
/// ```toml
/// ...
///
/// [lib]
/// proc-macro = true
/// ...
///
/// ```
///
/// After creating the lib, we need to import the library to our implementation
/// part.
///
/// To know more about procedural macro, please check the following:
/// https://doc.rust-lang.org/reference/procedural-macros.html#procedural-macros
fn main() {
println!("Derive Macro");
let student_1 = Student {
id: 1,
first_name: String::from("John"),
last_name: String::from("Doe"),
major: String::from("Computer Science"),
};
println!("Student 1: {:?}", student_1);
println!("Serialized Data:\n{}", student_1.to_xml());
}