#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[repr(i32)]
pub enum EColorGamutLabelSet {
Default = 0,
sRGB_Native = 1,
Native_sRGB_Boosted = 2,
}
impl EColorGamutLabelSet {
pub fn from_i32(val: i32) -> Option<Self> {
match val {
x if x == Self::Default as i32 => Some(Self::Default),
x if x == Self::sRGB_Native as i32 => Some(Self::sRGB_Native),
x if x == Self::Native_sRGB_Boosted as i32 => Some(Self::Native_sRGB_Boosted),
_ => None,
}
}
}