/// Writes a string slice into a buffer at the given position, advancing the position.
///
/// # Panics
/// Panics if the buffer is too small. The buffer must be pre-sized using `encoded_len`.
/// Writes a single byte into a buffer at the given position, advancing the position.
///
/// # Panics
/// Panics if the buffer is too small. The buffer must be pre-sized using `encoded_len`.
pub use write_byte;
pub use write_str;