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