(&self, f: &mut fmt::Formatter<'_>)
| 59 | |
| 60 | impl fmt::Display for UserFuncName { |
| 61 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 62 | match self { |
| 63 | UserFuncName::User(user) => user.fmt(f), |
| 64 | UserFuncName::Testcase(testcase) => testcase.fmt(f), |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | /// An external name in a user-defined symbol table. |
nothing calls this directly
no test coverage detected