Trait std::os::wasi::fs::MetadataExt

pub trait MetadataExt {
    fn dev(&self) -> u64;
    fn ino(&self) -> u64;
    fn nlink(&self) -> u64;
    fn size(&self) -> u64;
    fn atim(&self) -> u64;
    fn mtim(&self) -> u64;
    fn ctim(&self) -> u64;
}
???? This is a nightly-only experimental API. (wasi_ext #71213)
This is supported on WASI only.

WASI-specific extensions to fs::Metadata.

Required methods

???? This is a nightly-only experimental API. (wasi_ext #71213)

Returns the st_dev field of the internal filestat_t

???? This is a nightly-only experimental API. (wasi_ext #71213)

Returns the st_ino field of the internal filestat_t

???? This is a nightly-only experimental API. (wasi_ext #71213)

Returns the st_nlink field of the internal filestat_t

???? This is a nightly-only experimental API. (wasi_ext #71213)

Returns the st_size field of the internal filestat_t

???? This is a nightly-only experimental API. (wasi_ext #71213)

Returns the st_atim field of the internal filestat_t

???? This is a nightly-only experimental API. (wasi_ext #71213)

Returns the st_mtim field of the internal filestat_t

???? This is a nightly-only experimental API. (wasi_ext #71213)

Returns the st_ctim field of the internal filestat_t

Implementors

© 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/wasi/fs/trait.MetadataExt.html