pub trait VMetadata {
// Required methods
fn is_dir(&self) -> bool;
fn is_file(&self) -> bool;
fn len(&self) -> u64;
}
Expand description
The metadata we can read from a file.
pub trait VMetadata {
// Required methods
fn is_dir(&self) -> bool;
fn is_file(&self) -> bool;
fn len(&self) -> u64;
}
The metadata we can read from a file.