(self)
| 132 | |
| 133 | impl WorkspaceFileType { |
| 134 | pub fn as_tool_kind(self) -> &'static str { |
| 135 | match self { |
| 136 | Self::File => "file", |
| 137 | Self::Directory => "dir", |
| 138 | Self::Symlink => "link", |
| 139 | Self::Unknown => "unknown", |
| 140 | } |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /// Directory entry returned by a workspace backend. |