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