pub trait ToBytes { // Required method fn to_bytes(&self) -> Vec<u8>; }
A trait to convert a value into a byte slice that can be appended to a Builder.
Builder