Trait std::os::linux::fs::MetadataExt 1.1.0
[−]
[src]
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
Required Methods
fn as_raw_stat(&self) -> &stat
: deprecated in favor of the accessor methods of this trait
Gain 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.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; let stat = meta.as_raw_stat();Run
fn st_dev(&self) -> u64
1.8.0
Returns the device ID on which this file resides.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_dev());Run
fn st_ino(&self) -> u64
1.8.0
Returns the inode number.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_ino());Run
fn st_mode(&self) -> u32
1.8.0
Returns the file type and mode.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_mode());Run
fn st_nlink(&self) -> u64
1.8.0
Returns the number of hard links to file.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_nlink());Run
fn st_uid(&self) -> u32
1.8.0
Returns the user ID of the file owner.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_uid());Run
fn st_gid(&self) -> u32
1.8.0
Returns the group ID of the file owner.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_gid());Run
fn st_rdev(&self) -> u64
1.8.0
Returns the device ID that this file represents. Only relevant for special file.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_rdev());Run
fn st_size(&self) -> u64
1.8.0
Returns the size of the file (if it is a regular file or a symbolic link) in bytes.
The size of a symbolic link is the length of the pathname it contains, without a terminating null byte.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_size());Run
fn st_atime(&self) -> i64
1.8.0
Returns the last access time.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_atime());Run
fn st_atime_nsec(&self) -> i64
1.8.0
Returns the last access time, nano seconds part.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_atime_nsec());Run
fn st_mtime(&self) -> i64
1.8.0
Returns the last modification time.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_mtime());Run
fn st_mtime_nsec(&self) -> i64
1.8.0
Returns the last modification time, nano seconds part.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_mtime_nsec());Run
fn st_ctime(&self) -> i64
1.8.0
Returns the last status change time.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_ctime());Run
fn st_ctime_nsec(&self) -> i64
1.8.0
Returns the last status change time, nano seconds part.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_ctime_nsec());Run
fn st_blksize(&self) -> u64
1.8.0
Returns the "preferred" blocksize for efficient filesystem I/O.
Examples
use std::fs; use std::os::linux::fs::MetadataExt; let meta = fs::metadata("some_file")?; println!("{}", meta.st_blksize());Run
fn st_blocks(&self) -> u64
1.8.0
Implementors
impl MetadataExt for Metadata