ignore #[warn(dead_code)]

To ignore the #[warn(dead_code)] attribute in Rust, you can add the following line to your code:

#![allow(dead_code)]

This will disable the dead code warning for the entire module or crate.