pub trait Varint: Bits + Sealed { }Expand description
The integer widths readable/writable as LEB128 — u8, u16, u32, u64,
u128. Sealed: LEB128 is byte-granular, so the primitive widths are the whole
set (a uN field wants the next wider primitive).
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".