[筆記][rust] 在complier的時候關閉沒有使用的變數或function的檢查



https://doc.rust-lang.org/stable/rust-by-example/attribute/unused.html

在rust當中如果要關掉沒有使用的變數或function檢查的話可以用#[allow(dead_code)]這個attribute

以下是範例:

#[allow(dead_code)]
fn unused_function() {}

留言

熱門文章