条件の追加

target_osのように、いくつかの条件分岐はrustcが暗黙のうちに提供しています。条件を独自に追加する場合には--cfgフラグを用いてrustcに伝える必要があります。

#[cfg(some_condition)]
fn conditional_function() {
    println!("condition met!");
}

fn main() {
    conditional_function();
}

Try to run this to see what happens without the custom cfg flag.

cfgフラグがある場合:

$ rustc --cfg some_condition custom.rs && ./custom
condition met!
関連キーワード:  条件, 追加, 関数, Result, cfg, Rust, By, Example, エラー, Option