pub trait WriteFixed<const N: usize>where Self: Sized,{ // Required method fn to_bytes(&self) -> [u8; N]; }
A trait for writing data of fixed length.