Returns the metadata for the file that this entry points at.
(&self)
| 376 | |
| 377 | /// Returns the metadata for the file that this entry points at. |
| 378 | pub fn metadata(&self) -> Result<Metadata, SyscallError> { |
| 379 | Ok(self.meta.clone()) |
| 380 | } |
| 381 | } |
| 382 | |
| 383 | /// Iterator yielding Result<DirEntry> |