pub(crate) enum PresetType {
BoolSetting(BoolSettingIndex),
OtherPreset(PresetIndex),
}Variants§
BoolSetting(BoolSettingIndex)
OtherPreset(PresetIndex)
Trait Implementations§
Source§impl From<BoolSettingIndex> for PresetType
impl From<BoolSettingIndex> for PresetType
Source§fn from(bool_setting_index: BoolSettingIndex) -> Self
fn from(bool_setting_index: BoolSettingIndex) -> Self
Converts to this type from the input type.
Source§impl From<PresetIndex> for PresetType
impl From<PresetIndex> for PresetType
Source§fn from(value: PresetIndex) -> Self
fn from(value: PresetIndex) -> Self
Converts to this type from the input type.