pub trait VarIntWriter { // Required method fn write_varint(&mut self, varint: u64) -> Result<usize>; }
Borrowed from rust-sv by Brenton Gunning