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
/*
Appellation: rspace-macros <library>
Contributors: FL03 <jo3mccain@icloud.com>
*/
//! procedural macros for interacting with various wrappers
extern crate proc_macro;
use crateWrapperOpsAst;
use TokenStream;
use parse_macro_input;
/// The [`binary_wrapper!`] macro generates implementations for the core binary operations
/// onto a generic wrapper type. It supports both tuple structs and structs with named fields.
///
/// ```rust
/// extern crate rspace_macros as macros;
///
/// pub struct Wrapper<T>(pub T);
///
/// macros::binary_wrapper! {
/// impl Wrapper {
/// Add.add,
/// Sub.sub,
/// Mul.mul,
/// Div.div,
/// Rem.rem,
/// }
/// }
/// ```
///
/// or, for transparent structs with a named field:
///
/// ```rust
/// extern crate rspace_macros as macros;
///
/// pub struct Wrapper<T> {
/// pub field: T,
/// }
///
/// macros::binary_wrapper! {
/// impl Wrapper.field {
/// Add.add,
/// Sub.sub,
/// Mul.mul,
/// Div.div,
/// Rem.rem,
/// }
/// }
/// ```