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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypefetchcache?language=objc)
pub static WKWebsiteDataTypeFetchCache: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypediskcache?language=objc)
pub static WKWebsiteDataTypeDiskCache: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypememorycache?language=objc)
pub static WKWebsiteDataTypeMemoryCache: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypeofflinewebapplicationcache?language=objc)
pub static WKWebsiteDataTypeOfflineWebApplicationCache: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypecookies?language=objc)
pub static WKWebsiteDataTypeCookies: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypesessionstorage?language=objc)
pub static WKWebsiteDataTypeSessionStorage: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypelocalstorage?language=objc)
pub static WKWebsiteDataTypeLocalStorage: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypewebsqldatabases?language=objc)
pub static WKWebsiteDataTypeWebSQLDatabases: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypeindexeddbdatabases?language=objc)
pub static WKWebsiteDataTypeIndexedDBDatabases: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypeserviceworkerregistrations?language=objc)
pub static WKWebsiteDataTypeServiceWorkerRegistrations: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypefilesystem?language=objc)
pub static WKWebsiteDataTypeFileSystem: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypesearchfieldrecentsearches?language=objc)
pub static WKWebsiteDataTypeSearchFieldRecentSearches: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypemediakeys?language=objc)
pub static WKWebsiteDataTypeMediaKeys: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypehashsalt?language=objc)
pub static WKWebsiteDataTypeHashSalt: &'static NSString;
}
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatatypescreentime?language=objc)
pub static WKWebsiteDataTypeScreenTime: &'static NSString;
}
extern_class!(
/// A WKWebsiteDataRecord represents website data, grouped by domain name using the public suffix list.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/webkit/wkwebsitedatarecord?language=objc)
#[unsafe(super(NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct WKWebsiteDataRecord;
);
extern_conformance!(
unsafe impl NSObjectProtocol for WKWebsiteDataRecord {}
);
impl WKWebsiteDataRecord {
extern_methods!(
/// The display name for the data record. This is usually the domain name.
#[unsafe(method(displayName))]
#[unsafe(method_family = none)]
pub unsafe fn displayName(&self) -> Retained<NSString>;
/// The various types of website data that exist for this data record.
#[unsafe(method(dataTypes))]
#[unsafe(method_family = none)]
pub unsafe fn dataTypes(&self) -> Retained<NSSet<NSString>>;
);
}
/// Methods declared on superclass `NSObject`.
impl WKWebsiteDataRecord {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
);
}