pub trait WriteCapped<const CAP: usize> { // Required method fn to_bytes(&self) -> Vec<u8, CAP>; }
A trait for writing a capped amount of data.