use objc2::__framework_prelude::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct INTemporalEventTriggerTypeOptions(pub NSUInteger);
bitflags::bitflags! {
impl INTemporalEventTriggerTypeOptions: NSUInteger {
#[doc(alias = "INTemporalEventTriggerTypeOptionNotScheduled")]
const NotScheduled = 1<<0;
#[doc(alias = "INTemporalEventTriggerTypeOptionScheduledNonRecurring")]
const ScheduledNonRecurring = 1<<1;
#[doc(alias = "INTemporalEventTriggerTypeOptionScheduledRecurring")]
const ScheduledRecurring = 1<<2;
}
}
unsafe impl Encode for INTemporalEventTriggerTypeOptions {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for INTemporalEventTriggerTypeOptions {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}