条件の追加
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!