use objc2::__framework_prelude::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct INWorkoutLocationType(pub NSInteger);
impl INWorkoutLocationType {
#[doc(alias = "INWorkoutLocationTypeUnknown")]
pub const Unknown: Self = Self(0);
#[doc(alias = "INWorkoutLocationTypeOutdoor")]
pub const Outdoor: Self = Self(1);
#[doc(alias = "INWorkoutLocationTypeIndoor")]
pub const Indoor: Self = Self(2);
}
unsafe impl Encode for INWorkoutLocationType {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for INWorkoutLocationType {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}