pub trait XrBlockBuilderExt<'a>: XrBlockBuilder<'a> {
// Provided method
fn write_header_unchecked(
&self,
buf: &mut [u8],
block_type: u8,
block_word_len: u16,
) -> usize { ... }
}Expand description
Extension trait providing helpers for writing a XrBlock to a sequence of bytes.
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".