pub trait Write<'a> { // Required method fn to_bytes(&self) -> Cow<'a, [u8]>; }
A trait for writing data of variable length.