pub trait MetadataExt {
fn as_raw_stat(&self) -> &stat;
fn st_dev(&self) -> u64;
fn st_ino(&self) -> u64;
fn st_mode(&self) -> u32;
fn st_nlink(&self) -> u64;
fn st_uid(&self) -> u32;
fn st_gid(&self) -> u32;
fn st_rdev(&self) -> u64;
fn st_size(&self) -> u64;
fn st_atime(&self) -> i64;
fn st_atime_nsec(&self) -> i64;
fn st_mtime(&self) -> i64;
fn st_mtime_nsec(&self) -> i64;
fn st_ctime(&self) -> i64;
fn st_ctime_nsec(&self) -> i64;
fn st_blksize(&self) -> u64;
fn st_blocks(&self) -> u64;
}
OS-specific extension methods for fs::Metadata
fn as_raw_stat(&self) -> &statGain a reference to the underlying stat structure which contains the raw information returned by the OS.
The contents of the returned stat are not consistent across Unix platforms. The os::unix::fs::MetadataExt trait contains the cross-Unix abstractions contained within the raw stat.
fn st_dev(&self) -> u64fn st_ino(&self) -> u64fn st_mode(&self) -> u32fn st_nlink(&self) -> u64fn st_uid(&self) -> u32fn st_gid(&self) -> u32fn st_rdev(&self) -> u64fn st_size(&self) -> u64fn st_atime(&self) -> i64fn st_atime_nsec(&self) -> i64fn st_mtime(&self) -> i64fn st_mtime_nsec(&self) -> i64fn st_ctime(&self) -> i64fn st_ctime_nsec(&self) -> i64fn st_blksize(&self) -> u64fn st_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/linux/fs/trait.MetadataExt.html