Trait DirEntryExt
pub trait DirEntryExt
Unix-specific extension methods for fs::DirEntry.
Required Methods
fn ino(&self) -> u64Returns the underlying
d_inofield in the containeddirentstructure.Examples
use std::fs; use std::os::unix::fs::DirEntryExt; if let Ok(entries) = fs::read_dir(".") { for entry in entries { if let Ok(entry) = entry { // Here, `entry` is a `DirEntry`. println!("{:?}: {}", entry.file_name(), entry.ino()); } } }
Implementors
impl DirEntryExt for DirEntry