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