(kind: &str, ordinal: usize, total: usize)
| 1334 | } |
| 1335 | |
| 1336 | fn component_namespace(kind: &str, ordinal: usize, total: usize) -> String { |
| 1337 | if total > 1 { |
| 1338 | format!("__nemo_relay_plugin__{kind}__{ordinal}__") |
| 1339 | } else { |
| 1340 | format!("__nemo_relay_plugin__{kind}__") |
| 1341 | } |
| 1342 | } |
| 1343 | |
| 1344 | fn validate_plugin_multiplicity(report: &mut ConfigReport, config: &PluginConfig) { |
| 1345 | let totals = plugin_component_totals(config); |
no outgoing calls
no test coverage detected