#[repr(align(16))]pub struct AlignedStack<const N: usize> {
pub array: [u8; N],
}Expand description
An N-byte array aligned to a 16-byte boundary, for ABI-compliant stack storage.
Fields§
§array: [u8; N]#[repr(align(16))]pub struct AlignedStack<const N: usize> {
pub array: [u8; N],
}An N-byte array aligned to a 16-byte boundary, for ABI-compliant stack storage.
array: [u8; N]