pub trait MetadataExt {
fn dev(&self) -> u64;
fn ino(&self) -> u64;
fn mode(&self) -> u32;
fn nlink(&self) -> u64;
fn uid(&self) -> u32;
fn gid(&self) -> u32;
fn rdev(&self) -> u64;
fn size(&self) -> u64;
fn atime(&self) -> i64;
fn atime_nsec(&self) -> i64;
fn mtime(&self) -> i64;
fn mtime_nsec(&self) -> i64;
fn ctime(&self) -> i64;
fn ctime_nsec(&self) -> i64;
fn blksize(&self) -> u64;
fn blocks(&self) -> u64;
} fn dev(&self) -> u64fn ino(&self) -> u64fn mode(&self) -> u32fn nlink(&self) -> u64fn uid(&self) -> u32fn gid(&self) -> u32fn rdev(&self) -> u64fn size(&self) -> u64fn atime(&self) -> i64fn atime_nsec(&self) -> i64fn mtime(&self) -> i64fn mtime_nsec(&self) -> i64fn ctime(&self) -> i64fn ctime_nsec(&self) -> i64fn blksize(&self) -> u64fn blocks(&self) -> u64impl MetadataExt for Metadata
© 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.MetadataExt.html