pub trait WriteVlqExt<T> { // Required method fn write_vlq(&mut self, n: T) -> Result<()>; }
Write a variable-length quantity.