(&self, f: &mut fmt::Formatter<'_>)
| 65 | |
| 66 | impl fmt::Display for InterpKind { |
| 67 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 68 | f.write_str(match self { |
| 69 | InterpKind::Python => "Python", |
| 70 | InterpKind::Php => "PHP", |
| 71 | InterpKind::Native => "Native", |
| 72 | InterpKind::Kernel => "Kernel", |
| 73 | InterpKind::Jvm => "JVM", |
| 74 | InterpKind::Ruby => "Ruby", |
| 75 | InterpKind::Perl => "Perl", |
| 76 | InterpKind::Js => "JS", |
| 77 | InterpKind::PhpJit => "PHP (JIT)", |
| 78 | InterpKind::DotNet => ".NET", |
| 79 | InterpKind::Beam => "Beam", |
| 80 | InterpKind::Go => "Go", |
| 81 | }) |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | impl InterpKind { |
nothing calls this directly
no outgoing calls
no test coverage detected