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