pub trait IntoBytes {
    // Required method
    fn into_bytes(self) -> Vec<u8>;
}

Required Methods§

source

fn into_bytes(self) -> Vec<u8>

Implementors§