use objc2::__framework_prelude::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct INNotebookItemType(pub NSInteger);
impl INNotebookItemType {
#[doc(alias = "INNotebookItemTypeUnknown")]
pub const Unknown: Self = Self(0);
#[doc(alias = "INNotebookItemTypeNote")]
pub const Note: Self = Self(1);
#[doc(alias = "INNotebookItemTypeTaskList")]
pub const TaskList: Self = Self(2);
#[doc(alias = "INNotebookItemTypeTask")]
pub const Task: Self = Self(3);
}
unsafe impl Encode for INNotebookItemType {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for INNotebookItemType {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}