pub trait BitEncode {
const LAYOUT: Layout = _;
// Required method
fn bit_encode<K: Sink>(&self, w: &mut K) -> Result<(), BitError>;
}Expand description
A message encoded to a bit stream — the dual of BitDecode.
Provided Associated Constants§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".