| 91 | /// The return type of an interface method. |
| 92 | #[derive(Debug, Clone)] |
| 93 | pub struct WitReturn { |
| 94 | /// The Go type of the return type. |
| 95 | pub go_type: GoType, |
| 96 | /// The WIT type of the return type. |
| 97 | pub wit_type: Type, |
| 98 | } |
| 99 | |
| 100 | /// An analyzed WIT type definition. |
| 101 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected