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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2_foundation::*;
use crate::*;
extern "C" {
/// A
/// <code>
/// NSString
/// </code>
/// containing the local name of a peripheral.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdatalocalnamekey?language=objc)
pub static CBAdvertisementDataLocalNameKey: &'static NSString;
}
extern "C" {
/// A
/// <code>
/// NSNumber
/// </code>
/// containing the transmit power of a peripheral.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdatatxpowerlevelkey?language=objc)
pub static CBAdvertisementDataTxPowerLevelKey: &'static NSString;
}
extern "C" {
/// A list of one or more
/// <code>
/// CBUUID
/// </code>
/// objects, representing
/// <code>
/// CBService
/// </code>
/// UUIDs.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdataserviceuuidskey?language=objc)
pub static CBAdvertisementDataServiceUUIDsKey: &'static NSString;
}
extern "C" {
/// A dictionary containing service-specific advertisement data. Keys are
/// <code>
/// CBUUID
/// </code>
/// objects, representing
/// <code>
/// CBService
/// </code>
/// UUIDs. Values are
/// <code>
/// NSData
/// </code>
/// objects.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdataservicedatakey?language=objc)
pub static CBAdvertisementDataServiceDataKey: &'static NSString;
}
extern "C" {
/// A
/// <code>
/// NSData
/// </code>
/// object containing the manufacturer data of a peripheral.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdatamanufacturerdatakey?language=objc)
pub static CBAdvertisementDataManufacturerDataKey: &'static NSString;
}
extern "C" {
/// A list of one or more
/// <code>
/// CBUUID
/// </code>
/// objects, representing
/// <code>
/// CBService
/// </code>
/// UUIDs that were
/// found in the "overflow" area of the advertising data. Due to the nature of the data stored in this area,
/// UUIDs listed here are "best effort" and may not always be accurate.
///
///
/// See: startAdvertising:
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdataoverflowserviceuuidskey?language=objc)
pub static CBAdvertisementDataOverflowServiceUUIDsKey: &'static NSString;
}
extern "C" {
/// An NSNumber (Boolean) indicating whether or not the advertising event type was connectable. This can be used to determine
/// whether or not a peripheral is connectable in that instant.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdataisconnectable?language=objc)
pub static CBAdvertisementDataIsConnectable: &'static NSString;
}
extern "C" {
/// A list of one or more
/// <code>
/// CBUUID
/// </code>
/// objects, representing
/// <code>
/// CBService
/// </code>
/// UUIDs.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/corebluetooth/cbadvertisementdatasolicitedserviceuuidskey?language=objc)
pub static CBAdvertisementDataSolicitedServiceUUIDsKey: &'static NSString;
}