Copy current VFS for new process
()
| 469 | |
| 470 | /// Copy current VFS for new process |
| 471 | pub fn copy() -> Self { |
| 472 | VFS{s: String::from("C")} |
| 473 | } |
| 474 | |
| 475 | /// Add a communication handle as a path in the VFS |
| 476 | pub fn mount(mut self, mut handle: CommHandle, path: &str) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected