( typeName: string, schema: JSONSchema7, ctx: RustCodegenCtx, description?: string, )
| 544 | } |
| 545 | |
| 546 | function emitRustArrayAlias( |
| 547 | typeName: string, |
| 548 | schema: JSONSchema7, |
| 549 | ctx: RustCodegenCtx, |
| 550 | description?: string, |
| 551 | ): void { |
| 552 | if (ctx.generatedNames.has(typeName)) return; |
| 553 | emitRustTypeAlias( |
| 554 | typeName, |
| 555 | schema, |
| 556 | rustArrayType(schema, typeName, ctx), |
| 557 | ctx, |
| 558 | description, |
| 559 | ); |
| 560 | } |
| 561 | |
| 562 | function emitRustMapAlias( |
| 563 | typeName: string, |
no test coverage detected
searching dependent graphs…