( schema: JSONSchema7, parentTypeName: string, ctx: RustCodegenCtx, )
| 512 | } |
| 513 | |
| 514 | function rustMapType( |
| 515 | schema: JSONSchema7, |
| 516 | parentTypeName: string, |
| 517 | ctx: RustCodegenCtx, |
| 518 | ): string { |
| 519 | return `HashMap<String, ${rustMapValueType(schema, parentTypeName, ctx)}>`; |
| 520 | } |
| 521 | |
| 522 | function emitRustTypeAlias( |
| 523 | typeName: string, |
no test coverage detected
searching dependent graphs…