Create a VFS root backed by the real filesystem.
()
| 13 | |
| 14 | /// Create a VFS root backed by the real filesystem. |
| 15 | pub(crate) fn physical_root() -> VfsPath { |
| 16 | VfsPath::new(vfs::PhysicalFS::new("/")) |
| 17 | } |
| 18 | |
| 19 | /// Log file path within a VFS root. |
| 20 | fn log_file_vfs(root: &VfsPath) -> Result<VfsPath, Box<dyn std::error::Error>> { |
no outgoing calls
no test coverage detected