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 ASCredentialServiceIdentifierType(pub NSInteger);
impl ASCredentialServiceIdentifierType {
#[doc(alias = "ASCredentialServiceIdentifierTypeDomain")]
pub const Domain: Self = Self(0);
#[doc(alias = "ASCredentialServiceIdentifierTypeURL")]
pub const URL: Self = Self(1);
}
unsafe impl Encode for ASCredentialServiceIdentifierType {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for ASCredentialServiceIdentifierType {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct ASCredentialServiceIdentifier;
);
extern_conformance!(
unsafe impl NSCoding for ASCredentialServiceIdentifier {}
);
extern_conformance!(
unsafe impl NSCopying for ASCredentialServiceIdentifier {}
);
unsafe impl CopyingHelper for ASCredentialServiceIdentifier {
type Result = Self;
}
extern_conformance!(
unsafe impl NSObjectProtocol for ASCredentialServiceIdentifier {}
);
extern_conformance!(
unsafe impl NSSecureCoding for ASCredentialServiceIdentifier {}
);
impl ASCredentialServiceIdentifier {
extern_methods!(
#[unsafe(method(initWithIdentifier:type:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithIdentifier_type(
this: Allocated<Self>,
identifier: &NSString,
r#type: ASCredentialServiceIdentifierType,
) -> Retained<Self>;
#[unsafe(method(identifier))]
#[unsafe(method_family = none)]
pub unsafe fn identifier(&self) -> Retained<NSString>;
#[unsafe(method(type))]
#[unsafe(method_family = none)]
pub unsafe fn r#type(&self) -> ASCredentialServiceIdentifierType;
);
}
impl ASCredentialServiceIdentifier {
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>;
);
}