pub type IntegerConfigOption<'a> = ConfigOption<'a, Integer>;
Expand description

Config values are represented as an i64. No default is used

Aliased Type§

struct IntegerConfigOption<'a> {
    pub name: &'a str,
    pub default: (),
    pub description: &'a str,
    pub deprecated: bool,
}

Fields§

§name: &'a str

The name of the ConfigOption.

§default: ()

The default value of the ConfigOption

§description: &'a str§deprecated: bool

Implementations§

source§

impl<'a> IntegerConfigOption<'a>

source

pub const fn new_i64_no_default(name: &'a str, description: &'a str) -> Self