We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f364d commit 39fc803Copy full SHA for 39fc803
src/metadata.rs
@@ -51,8 +51,8 @@ impl Metadata {
51
Some(self.stat.st_mode as u32 & libc::S_IFMT as u32)
52
}
53
/// Return device node, if available
54
- pub fn ino(&self) -> Option<libc::ino_t> {
55
- Some(self.stat.st_ino)
+ pub fn ino(&self) -> Option<u64> {
+ Some(self.stat.st_ino as u64)
56
57
/// Return device node major of the file, if available
58
pub fn dev_major(&self) -> Option<u32> {
0 commit comments