(&self, path: &Path)
| 79 | |
| 80 | impl PluginType { |
| 81 | fn check(&self, path: &Path) -> Option<PathBuf> { |
| 82 | match *self { |
| 83 | PluginType::Python => PluginType::check_python(path), |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | fn check_python(path: &Path) -> Option<PathBuf> { |
| 88 | if path.is_file() { |