pub trait Handle {
    fn truncate(&self, offset: usize) -> Result<()>;
    fn file_size(&self) -> Result<usize>;
}

Required Methods

Returns the current size of this file.

Implementors