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
//!
//! This crate provides three derive macros for crate `castflip`.
//!
//! Please refer to the documentation of `castflip`.
//!
use TokenStream;
///
/// Declares that the structure is `encast`able / `decast`able.
///
/// Please refer to the description of trait `Cast` in the
/// documentation of `castflip`.
///
///
/// Declares that the structure is endian-`Flip`pable.
///
/// Please refer to the description of trait `Flip` in the
/// documentation of `castflip`.
///
///
/// Declares that the structure is marked as endian-`Flip`pable but
/// the implemented operation is Nop (No operation).
///
/// Please refer to the description of trait `NopFlip` in the
/// documentation of `castflip`.
///