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
#![recursion_limit = "79"]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::unneeded_field_pattern))]
extern crate proc_macro;
#[macro_use]
mod macros;
mod ast;
mod ext;
mod identifiable;
mod sized;
use proc_macro::TokenStream;
#[proc_macro_derive(MtProtoIdentifiable, attributes(mtproto_identifiable))]
pub fn mt_proto_identifiable(input: TokenStream) -> TokenStream {
let ast = syn::parse_macro_input!(input as syn::DeriveInput);
let tokens = match ast::Container::from_derive_input(ast, "mtproto::Identifiable") {
Ok(container) => crate::identifiable::impl_derive(container),
Err(e) => e.to_compile_error(),
};
tokens.into()
}
#[proc_macro_derive(MtProtoSized, attributes(mtproto_sized))]
pub fn mt_proto_sized(input: TokenStream) -> TokenStream {
let ast = syn::parse_macro_input!(input as syn::DeriveInput);
let tokens = match ast::Container::from_derive_input(ast, "mtproto::MtProtoSized") {
Ok(container) => crate::sized::impl_derive(container),
Err(e) => e.to_compile_error(),
};
tokens.into()
}