| 52 | /// One variant of an enum type. |
| 53 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 54 | pub struct Variant { |
| 55 | pub name: Ident, |
| 56 | pub fields: Fields, |
| 57 | pub pos: Pos, |
| 58 | } |
| 59 | |
| 60 | /// The fields of a struct or enum variant, formatted as a struct or tuple. |
| 61 | #[derive(Clone, PartialEq, Eq, Debug)] |