Allow unoptimized build-time assertions

configname: CONFIG_RUST_BUILD_ASSERT_ALLOW

Linux Kernel Configuration
└─>Kernel hacking
└─>Rust hacking
└─>Allow unoptimized build-time assertions
In linux kernel since version 6.2 (release Date: 2023-02-19)  
Controls how are `build_error!` and `build_assert!` handled during build.

If calls to them exist in the binary, it may indicate a violated invariant
or that the optimizer failed to verify the invariant during compilation.

This should not happen, thus by default the build is aborted. However,
as an escape hatch, you can choose Y here to ignore them during build
and let the check be carried at runtime (with `panic!` being called if
the check fails).

If unsure, say N.

depends
CONFIG_RUST