use objc2::__framework_prelude::*;
use crate::*;
#[deprecated = "INRelativeSetting is deprecated. There is no replacement."]
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct INRelativeSetting(pub NSInteger);
impl INRelativeSetting {
#[doc(alias = "INRelativeSettingUnknown")]
#[deprecated = "INRelativeSetting is deprecated. There is no replacement."]
pub const Unknown: Self = Self(0);
#[doc(alias = "INRelativeSettingLowest")]
#[deprecated = "INRelativeSetting is deprecated. There is no replacement."]
pub const Lowest: Self = Self(1);
#[doc(alias = "INRelativeSettingLower")]
#[deprecated = "INRelativeSetting is deprecated. There is no replacement."]
pub const Lower: Self = Self(2);
#[doc(alias = "INRelativeSettingHigher")]
#[deprecated = "INRelativeSetting is deprecated. There is no replacement."]
pub const Higher: Self = Self(3);
#[doc(alias = "INRelativeSettingHighest")]
#[deprecated = "INRelativeSetting is deprecated. There is no replacement."]
pub const Highest: Self = Self(4);
}
unsafe impl Encode for INRelativeSetting {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for INRelativeSetting {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}