pub const fn assert_not_zst<T>()
Assert that type T is not a ZST (zero-sized type) at compile time.
T
struct NonZst([u64; u16::MAX as usize]); const _: () = isit::assert_not_zst::<NonZst>();