pub trait FileSetLen {
    fn set_len(&self, _len: u64) -> Result<()>;
}
Expand description

A trait for setting the size of a file.

This is equivalent to File’s set_len method, but wrapped in a trait so that it can be implemented for other types.

Required Methods§

Set the size of this file.

This is the moral equivalent of ftruncate().

Implementations on Foreign Types§

Implementors§