cairo_lang_filesystem/
flag.rs

1/// A compilation flag.
2#[derive(PartialEq, Eq, Debug)]
3pub enum Flag {
4    /// Whether automatically add `withdraw_gas` calls in code cycles.
5    /// Default is true - automatically add.
6    AddWithdrawGas(bool),
7    /// Whether automatically add `redeposit_gas` calls on stores of the gas builtin.
8    /// Default is false - automatically add.
9    AddRedepositGas(bool),
10    NumericMatchOptimizationMinArmsThreshold(usize),
11}