cxx 1.0.194

Safe interop between Rust and C++
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: derive(BitAnd) is currently only supported on enums, not structs
 --> tests/ui/derive_bit_struct.rs:3:14
  |
3 |     #[derive(BitAnd, BitOr, BitXor)]
  |              ^^^^^^

error: derive(BitOr) is currently only supported on enums, not structs
 --> tests/ui/derive_bit_struct.rs:3:22
  |
3 |     #[derive(BitAnd, BitOr, BitXor)]
  |                      ^^^^^

error: derive(BitXor) is currently only supported on enums, not structs
 --> tests/ui/derive_bit_struct.rs:3:29
  |
3 |     #[derive(BitAnd, BitOr, BitXor)]
  |                             ^^^^^^