| 5814 | bool is_static; /* no `self` (e.g. `default`, `parse`) */ |
| 5815 | }; |
| 5816 | struct DeriveImpl { |
| 5817 | const char *derive_name; |
| 5818 | const char *trait_qn; |
| 5819 | struct DeriveMethod methods[4]; /* NULL-terminated by empty short_name */ |
| 5820 | }; |
| 5821 | static const struct DeriveImpl derives[] = { |
| 5822 | {"Clone", "core.clone.Clone", {{"clone", NULL, false}, {NULL, NULL, false}}}, |
| 5823 | {"Copy", "core.marker.Copy", {{NULL, NULL, false}}}, /* marker — no methods */ |
nothing calls this directly
no outgoing calls
no test coverage detected