| 34 | /// A declaration of a type. |
| 35 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 36 | pub struct Type { |
| 37 | pub name: Ident, |
| 38 | pub is_extern: bool, |
| 39 | pub is_nodebug: bool, |
| 40 | pub ty: TypeValue, |
| 41 | pub pos: Pos, |
| 42 | } |
| 43 | |
| 44 | /// The actual type-value: a primitive or an enum with variants. |
| 45 | #[derive(Clone, PartialEq, Eq, Debug)] |
no outgoing calls
no test coverage detected