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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

// NS_TYPED_ENUM
pub type NSTextContentType = NSString;

extern "C" {
    pub static NSTextContentTypeUsername: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypePassword: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeOneTimeCode: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeNewPassword: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeNamePrefix: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeGivenName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeMiddleName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeFamilyName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeNameSuffix: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeNickname: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeJobTitle: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeOrganizationName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeLocation: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeFullStreetAddress: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeStreetAddressLine1: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeStreetAddressLine2: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeAddressCity: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeAddressState: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeAddressCityAndState: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeSublocality: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCountryName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypePostalCode: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeTelephoneNumber: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeEmailAddress: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeURL: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardNumber: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardGivenName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardMiddleName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardFamilyName: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardSecurityCode: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardExpiration: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardExpirationMonth: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardExpirationYear: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeCreditCardType: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeShipmentTrackingNumber: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeFlightNumber: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeDateTime: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeBirthdate: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeBirthdateDay: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeBirthdateMonth: &'static NSTextContentType;
}

extern "C" {
    pub static NSTextContentTypeBirthdateYear: &'static NSTextContentType;
}

extern_protocol!(
    pub unsafe trait NSTextContent {
        #[method_id(@__retain_semantics Other contentType)]
        unsafe fn contentType(&self) -> Option<Id<NSTextContentType>>;

        #[method(setContentType:)]
        unsafe fn setContentType(&self, content_type: Option<&NSTextContentType>);
    }

    unsafe impl ProtocolType for dyn NSTextContent {}
);