1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! 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>;
    }
);