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