Trait std::os::unix::fs::DirEntryExt
pub trait DirEntryExt {
fn ino(&self) -> u64;
}
This is supported on Unix only.
Unix-specific extension methods for fs::DirEntry.
Required methods
fn ino(&self) -> u64
Returns the underlying d_ino field in the contained dirent structure.
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
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/unix/fs/trait.DirEntryExt.html