use objc2::{Encode, Encoding, RefEncode};
#[repr(isize)]
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, PartialOrd, Ord)]
pub enum MTLSparsePageSize {
KB16 = 101,
KB64 = 102,
KB256 = 103,
}
unsafe impl Encode for MTLSparsePageSize {
const ENCODING: Encoding = isize::ENCODING;
}
unsafe impl RefEncode for MTLSparsePageSize {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}