| 68 | /// `ModuleId` or `Module`. |
| 69 | #[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)] |
| 70 | pub struct Struct { |
| 71 | pub abilities: AbilitySet, |
| 72 | pub type_parameters: Vec<StructTypeParameter>, |
| 73 | pub fields: Vec<Field>, |
| 74 | } |
| 75 | |
| 76 | /// Normalized version of a `FunctionDefinition`. Not safe to compare without an associated |
| 77 | /// `ModuleId` or `Module`. |
no outgoing calls