Trait std::os::unix::fs::MetadataExt 1.1.0
[−]
[src]
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;
}This is supported on Unix only.
Required Methods
fn dev(&self) -> u64
This is supported on Unix only.
fn ino(&self) -> u64
This is supported on Unix only.
fn mode(&self) -> u32
This is supported on Unix only.
fn nlink(&self) -> u64
This is supported on Unix only.
fn uid(&self) -> u32
This is supported on Unix only.
fn gid(&self) -> u32
This is supported on Unix only.
fn rdev(&self) -> u64
This is supported on Unix only.
fn size(&self) -> u64
This is supported on Unix only.
fn atime(&self) -> i64
This is supported on Unix only.
fn atime_nsec(&self) -> i64
This is supported on Unix only.
fn mtime(&self) -> i64
This is supported on Unix only.
fn mtime_nsec(&self) -> i64
This is supported on Unix only.
fn ctime(&self) -> i64
This is supported on Unix only.
fn ctime_nsec(&self) -> i64
This is supported on Unix only.
fn blksize(&self) -> u64
This is supported on Unix only.
fn blocks(&self) -> u64
This is supported on Unix only.
Implementors
impl MetadataExt for Metadata