use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "CKOperation")]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
pub struct CKDiscoverUserIdentitiesOperation;
#[cfg(feature = "CKOperation")]
unsafe impl ClassType for CKDiscoverUserIdentitiesOperation {
#[inherits(NSOperation, NSObject)]
type Super = CKOperation;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "CKOperation")]
unsafe impl NSObjectProtocol for CKDiscoverUserIdentitiesOperation {}
extern_methods!(
#[cfg(feature = "CKOperation")]
unsafe impl CKDiscoverUserIdentitiesOperation {
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "CKUserIdentityLookupInfo")]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method_id(@__retain_semantics Init initWithUserIdentityLookupInfos:)]
pub unsafe fn initWithUserIdentityLookupInfos(
this: Allocated<Self>,
user_identity_lookup_infos: &NSArray<CKUserIdentityLookupInfo>,
) -> Retained<Self>;
#[cfg(feature = "CKUserIdentityLookupInfo")]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method_id(@__retain_semantics Other userIdentityLookupInfos)]
pub unsafe fn userIdentityLookupInfos(&self)
-> Retained<NSArray<CKUserIdentityLookupInfo>>;
#[cfg(feature = "CKUserIdentityLookupInfo")]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method(setUserIdentityLookupInfos:)]
pub unsafe fn setUserIdentityLookupInfos(
&self,
user_identity_lookup_infos: &NSArray<CKUserIdentityLookupInfo>,
);
#[cfg(all(
feature = "CKUserIdentity",
feature = "CKUserIdentityLookupInfo",
feature = "block2"
))]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method(userIdentityDiscoveredBlock)]
pub unsafe fn userIdentityDiscoveredBlock(
&self,
) -> *mut block2::Block<dyn Fn(NonNull<CKUserIdentity>, NonNull<CKUserIdentityLookupInfo>)>;
#[cfg(all(
feature = "CKUserIdentity",
feature = "CKUserIdentityLookupInfo",
feature = "block2"
))]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method(setUserIdentityDiscoveredBlock:)]
pub unsafe fn setUserIdentityDiscoveredBlock(
&self,
user_identity_discovered_block: Option<
&block2::Block<dyn Fn(NonNull<CKUserIdentity>, NonNull<CKUserIdentityLookupInfo>)>,
>,
);
#[cfg(feature = "block2")]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method(discoverUserIdentitiesCompletionBlock)]
pub unsafe fn discoverUserIdentitiesCompletionBlock(
&self,
) -> *mut block2::Block<dyn Fn(*mut NSError)>;
#[cfg(feature = "block2")]
#[deprecated = "No longer supported. Please see Sharing CloudKit Data with Other iCloud Users."]
#[method(setDiscoverUserIdentitiesCompletionBlock:)]
pub unsafe fn setDiscoverUserIdentitiesCompletionBlock(
&self,
discover_user_identities_completion_block: Option<&block2::Block<dyn Fn(*mut NSError)>>,
);
}
);
extern_methods!(
#[cfg(feature = "CKOperation")]
unsafe impl CKDiscoverUserIdentitiesOperation {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Retained<Self>;
}
);