Lookup and remove subdirectory, returning the shared reference
(&mut self, _name: &str)
| 50 | } |
| 51 | /// Lookup and remove subdirectory, returning the shared reference |
| 52 | fn remove_dir(&mut self, _name: &str) -> Result<Arc<RwLock<dyn DirLike + Sync + Send>>, syscalls::SyscallError> { |
| 53 | Err(syscalls::SYSCALL_ERROR_NOT_IMPLEMENTED) |
| 54 | } |
| 55 | /// Lookup and remove file, returning the shared reference |
| 56 | fn remove_file(&mut self, _name: &str) -> Result<Arc<RwLock<dyn FileLike + Sync + Send>>, syscalls::SyscallError> { |
| 57 | Err(syscalls::SYSCALL_ERROR_NOT_IMPLEMENTED) |