use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct CNContainerType(pub NSInteger);
impl CNContainerType {
#[doc(alias = "CNContainerTypeUnassigned")]
pub const Unassigned: Self = Self(0);
#[doc(alias = "CNContainerTypeLocal")]
pub const Local: Self = Self(1);
#[doc(alias = "CNContainerTypeExchange")]
pub const Exchange: Self = Self(2);
#[doc(alias = "CNContainerTypeCardDAV")]
pub const CardDAV: Self = Self(3);
}
unsafe impl Encode for CNContainerType {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for CNContainerType {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CNContainer;
);
extern_conformance!(
unsafe impl NSCoding for CNContainer {}
);
extern_conformance!(
unsafe impl NSCopying for CNContainer {}
);
unsafe impl CopyingHelper for CNContainer {
type Result = Self;
}
extern_conformance!(
unsafe impl NSObjectProtocol for CNContainer {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CNContainer {}
);
impl CNContainer {
extern_methods!(
#[unsafe(method(identifier))]
#[unsafe(method_family = none)]
pub unsafe fn identifier(&self) -> Retained<NSString>;
#[unsafe(method(name))]
#[unsafe(method_family = none)]
pub unsafe fn name(&self) -> Retained<NSString>;
#[unsafe(method(type))]
#[unsafe(method_family = none)]
pub unsafe fn r#type(&self) -> CNContainerType;
);
}
impl CNContainer {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}
extern "C" {
pub static CNContainerIdentifierKey: &'static NSString;
}
extern "C" {
pub static CNContainerNameKey: &'static NSString;
}
extern "C" {
pub static CNContainerTypeKey: &'static NSString;
}