( typeName: string, schema: JSONSchema7, ctx: RustCodegenCtx, description?: string, )
| 560 | } |
| 561 | |
| 562 | function emitRustMapAlias( |
| 563 | typeName: string, |
| 564 | schema: JSONSchema7, |
| 565 | ctx: RustCodegenCtx, |
| 566 | description?: string, |
| 567 | ): void { |
| 568 | if (ctx.generatedNames.has(typeName)) return; |
| 569 | emitRustTypeAlias( |
| 570 | typeName, |
| 571 | schema, |
| 572 | rustMapType(schema, typeName, ctx), |
| 573 | ctx, |
| 574 | description, |
| 575 | ); |
| 576 | } |
| 577 | |
| 578 | function rustRpcResultDescription( |
| 579 | method: RpcMethod, |
no test coverage detected
searching dependent graphs…