pub trait EncodeGroupVarintTo {
// Required method
fn encode_group_varint_to<T: MutBits + ?Sized>(
&self,
out: &mut T,
) -> Result<usize, BitsError>;
}Expand description
The ‘Group Varint’ format, which moves all the control bits to header bytes
Required Methods§
fn encode_group_varint_to<T: MutBits + ?Sized>( &self, out: &mut T, ) -> Result<usize, BitsError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.