use crate::common::*;
use crate::CoreLocation::*;
use crate::Foundation::*;
use crate::HealthKit::*;
use crate::UniformTypeIdentifiers::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "HealthKit_HKSourceQuery")]
pub struct HKSourceQuery;
#[cfg(feature = "HealthKit_HKSourceQuery")]
unsafe impl ClassType for HKSourceQuery {
#[inherits(NSObject)]
type Super = HKQuery;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "HealthKit_HKSourceQuery")]
unsafe impl NSObjectProtocol for HKSourceQuery {}
extern_methods!(
#[cfg(feature = "HealthKit_HKSourceQuery")]
unsafe impl HKSourceQuery {
#[cfg(all(
feature = "Foundation_NSError",
feature = "Foundation_NSPredicate",
feature = "Foundation_NSSet",
feature = "HealthKit_HKSampleType",
feature = "HealthKit_HKSource"
))]
#[method_id(@__retain_semantics Init initWithSampleType:samplePredicate:completionHandler:)]
pub unsafe fn initWithSampleType_samplePredicate_completionHandler(
this: Allocated<Self>,
sample_type: &HKSampleType,
object_predicate: Option<&NSPredicate>,
completion_handler: &Block<
(NonNull<HKSourceQuery>, *mut NSSet<HKSource>, *mut NSError),
(),
>,
) -> Id<Self>;
}
);
extern_methods!(
#[cfg(feature = "HealthKit_HKSourceQuery")]
unsafe impl HKSourceQuery {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
}
);
extern_methods!(
#[cfg(feature = "HealthKit_HKSourceQuery")]
unsafe impl HKSourceQuery {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);