| 100 | /// An analyzed WIT type definition. |
| 101 | #[derive(Debug, Clone)] |
| 102 | pub struct AnalyzedType { |
| 103 | /// The name of the type in the WIT world. |
| 104 | pub name: String, |
| 105 | /// The Go identifier of the type. |
| 106 | pub go_type_name: GoIdentifier, |
| 107 | /// The definition of the type. |
| 108 | pub definition: TypeDefinition, |
| 109 | } |
| 110 | |
| 111 | /// The definition of a WIT type. |
| 112 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected