1 2 3 4 5 6 7
#[repr(C)] #[derive(Debug, Clone, Copy)] pub struct TOptional<T> { pub value: T, pub is_set: u8, }