Trait vfs::VMetadata [] [src]

pub trait VMetadata {
    fn is_dir(&self) -> bool;
    fn is_file(&self) -> bool;
    fn len(&self) -> u64;
}

File metadata abstraction

Required Methods

Returns true iff this path is a directory

Returns true iff this path is a file

Returns the length of the file at this path

Implementors