pub type DefaultStringConfigOption<'a> = ConfigOption<'a, DefaultString>;Expand description
Config values are repsentedas an String. A default is used
Aliased Type§
pub struct DefaultStringConfigOption<'a> {
pub name: &'a str,
pub default: &'a str,
pub description: &'a str,
pub deprecated: bool,
pub dynamic: bool,
pub multi: bool,
}Fields§
§name: &'a strThe name of the ConfigOption.
default: &'a strThe default value of the ConfigOption
description: &'a str§deprecated: bool§dynamic: bool§multi: bool