pub trait IntoVecBytes: Sized {
// Required method
fn to_be_bytes(a: Self) -> Vec<u8>;
}
Required Methods§
fn to_be_bytes(a: Self) -> Vec<u8>
Object Safety§
This trait is not object safe.
pub trait IntoVecBytes: Sized {
// Required method
fn to_be_bytes(a: Self) -> Vec<u8>;
}