pub trait Varint: Default + Debug + Clone + Copy { // Required methods fn from_u64(v: u64) -> Self; fn into_u64(self) -> u64; }