Check a metadata field for duplicate level parameter names. `Vec ` performs the real check; `()` (erased metadata) is a no-op.
| 72 | /// Check a metadata field for duplicate level parameter names. |
| 73 | /// `Vec<Name>` performs the real check; `()` (erased metadata) is a no-op. |
| 74 | pub trait CheckDupLevelParams { |
| 75 | fn has_duplicate_level_params(&self) -> bool; |
| 76 | } |
| 77 | |
| 78 | impl CheckDupLevelParams for Vec<Name> { |
| 79 | fn has_duplicate_level_params(&self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected