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

Required Methods§

source

fn into_bytes(self) -> [u8; N]

Implementations on Foreign Types§

source§

impl IntoBytes<32> for [Felt; 4]

source§

fn into_bytes(self) -> [u8; 32]

Implementors§