Debug assertions

configname: CONFIG_RUST_DEBUG_ASSERTIONS

Linux Kernel Configuration
└─>Kernel hacking
└─>Rust hacking
└─>Debug assertions
In linux kernel since version 6.1 (release Date: 2022-12-11)  
Enables rustc's `-Cdebug-assertions` codegen option.

This flag lets you turn `cfg(debug_assertions)` conditional
compilation on or off. This can be used to enable extra debugging
code in development but not in production. For example, it controls
the behavior of the standard library's `debug_assert!` macro.

Note that this will apply to all Rust code, including `core`.

If unsure, say N.

depends
CONFIG_RUST