pub trait StoreMetadata { // Required methods fn size(&self) -> u64; fn created(&self) -> u64; fn modified(&self) -> u64; }
Trait representing the metadata of a file.
Returns the size of the file in bytes.
Returns the creation timestamp of the file (epoch time).
Returns the last modification timestamp of the file (epoch time).