pub trait IntoBytes<const N: usize> {
    fn into_bytes(self) -> [u8; N];
}

Required Methods

Implementations on Foreign Types

Implementors