icrate 0.1.2

Bindings to Apple's frameworks
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use crate::common::*;
use crate::CoreData::*;
use crate::Foundation::*;

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(feature = "CoreData_NSDerivedAttributeDescription")]
    pub struct NSDerivedAttributeDescription;

    #[cfg(feature = "CoreData_NSDerivedAttributeDescription")]
    unsafe impl ClassType for NSDerivedAttributeDescription {
        #[inherits(NSPropertyDescription, NSObject)]
        type Super = NSAttributeDescription;
        type Mutability = InteriorMutable;
    }
);

#[cfg(feature = "CoreData_NSDerivedAttributeDescription")]
unsafe impl NSCoding for NSDerivedAttributeDescription {}

#[cfg(feature = "CoreData_NSDerivedAttributeDescription")]
unsafe impl NSCopying for NSDerivedAttributeDescription {}

#[cfg(feature = "CoreData_NSDerivedAttributeDescription")]
unsafe impl NSObjectProtocol for NSDerivedAttributeDescription {}

extern_methods!(
    #[cfg(feature = "CoreData_NSDerivedAttributeDescription")]
    unsafe impl NSDerivedAttributeDescription {
        #[cfg(feature = "Foundation_NSExpression")]
        #[method_id(@__retain_semantics Other derivationExpression)]
        pub unsafe fn derivationExpression(&self) -> Option<Id<NSExpression>>;

        #[cfg(feature = "Foundation_NSExpression")]
        #[method(setDerivationExpression:)]
        pub unsafe fn setDerivationExpression(&self, derivation_expression: Option<&NSExpression>);
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    #[cfg(feature = "CoreData_NSDerivedAttributeDescription")]
    unsafe impl NSDerivedAttributeDescription {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Id<Self>;
    }
);