pub trait VowFile: Read + Write {
// Required methods
fn open(path: impl AsRef<Path>) -> Result<Self>
where Self: Sized;
fn set_len(&mut self, len: u64) -> Result<()>;
}Expand description
Low-level trait for synchronous file operations