Remove a path from the VFS
(mut self, path: &str)
| 487 | |
| 488 | /// Remove a path from the VFS |
| 489 | pub fn remove(mut self, path: &str) -> Self { |
| 490 | self.s.push('-'); |
| 491 | self.s.push_str(path); |
| 492 | self.s.push(':'); // Terminates path |
| 493 | self |
| 494 | } |
| 495 | |
| 496 | fn as_str(&self) -> &str { |
| 497 | &self.s |
no test coverage detected