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
//! Internal data structures used during proc-macro code generation.
//!
//! [`FuncInfo`] is populated by [`crate::get_funcs_info`] and then consumed
//! by the code-generation helpers ([`crate::get_impl_func`],
//! [`crate::make_dispatch_arms`]).
use ;
use Punctuated;
use ;
/// Metadata collected from a single `#[tag(...)]`-annotated trait method.
///
/// Each field is used by the code-generation helpers to emit the correct Rust
/// source code for both the **proxy caller** (client or server push) and the
/// **dispatcher** (`IController::call` match arm).