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_HKLensSpecification")]
pub struct HKLensSpecification;
#[cfg(feature = "HealthKit_HKLensSpecification")]
unsafe impl ClassType for HKLensSpecification {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "HealthKit_HKLensSpecification")]
unsafe impl NSObjectProtocol for HKLensSpecification {}
extern_methods!(
#[cfg(feature = "HealthKit_HKLensSpecification")]
unsafe impl HKLensSpecification {
#[cfg(feature = "HealthKit_HKQuantity")]
#[method_id(@__retain_semantics Other sphere)]
pub unsafe fn sphere(&self) -> Id<HKQuantity>;
#[cfg(feature = "HealthKit_HKQuantity")]
#[method_id(@__retain_semantics Other cylinder)]
pub unsafe fn cylinder(&self) -> Option<Id<HKQuantity>>;
#[cfg(feature = "HealthKit_HKQuantity")]
#[method_id(@__retain_semantics Other axis)]
pub unsafe fn axis(&self) -> Option<Id<HKQuantity>>;
#[cfg(feature = "HealthKit_HKQuantity")]
#[method_id(@__retain_semantics Other addPower)]
pub unsafe fn addPower(&self) -> Option<Id<HKQuantity>>;
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Option<Allocated<Self>>) -> Id<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);