pub trait File: Read + Seek + Write {
    fn file_size(&self) -> Result<u64, Error>;
fn truncate(&mut self, size: u64) -> Result<(), Error>; }
Expand description

A file opened by Vfs.

Required methods

Implementations on Foreign Types

Implementors