use objc2::__framework_prelude::*;
use crate::*;
#[deprecated = "INCarDefroster is deprecated. There is no replacement."]
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct INCarDefroster(pub NSInteger);
impl INCarDefroster {
#[doc(alias = "INCarDefrosterUnknown")]
#[deprecated = "INCarDefroster is deprecated. There is no replacement."]
pub const Unknown: Self = Self(0);
#[doc(alias = "INCarDefrosterFront")]
#[deprecated = "INCarDefroster is deprecated. There is no replacement."]
pub const Front: Self = Self(1);
#[doc(alias = "INCarDefrosterRear")]
#[deprecated = "INCarDefroster is deprecated. There is no replacement."]
pub const Rear: Self = Self(2);
#[doc(alias = "INCarDefrosterAll")]
#[deprecated = "INCarDefroster is deprecated. There is no replacement."]
pub const All: Self = Self(3);
}
unsafe impl Encode for INCarDefroster {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for INCarDefroster {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}