pub trait IntoBytes { // Required method fn into_bytes(self) -> Vec<u8> ⓘ; }
Extension trait for converting into Vec<u8>
Vec<u8>