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
use MacAddr8;
/// 16-bit Zigbee network address.
pub type NodeId = u16;
/// 802.15.4 PAN ID.
pub type PanId = u16;
/// 16-bit Zigbee multicast group identifier.
pub type MulticastId = u16;
/// EUI 64-bit ID (an IEEE address).
pub type Eui64 = MacAddr8;
/// The implicit certificate used in `CBKE`.
pub type CertificateData = ;
/// The public key data used in `CBKE`.
pub type PublicKeyData = ;
/// The private key data used in `CBKE`.
pub type PrivateKeyData = ;
/// The Shared Message Authentication Code data used in `CBKE`.
pub type SmacData = ;
/// An ECDSA signature
pub type SignatureData = ;
/// The implicit certificate used in `CBKE`.
pub type Certificate283k1Data = ;
/// The public key data used in `CBKE`.
pub type PublicKey283k1Data = ;
/// The private key data used in `CBKE`.
pub type PrivateKey283k1Data = ;
/// An ECDSA signature
pub type Signature283k1Data = ;
/// The calculated digest of a message
pub type MessageDigest = ;
/// Consumed duty cycles up to maxDevices.
///
/// When the number of children that are being monitored is less than maxDevices,
/// the `EmberNodeId` element in the `EmberPerDeviceDutyCycle` will be `0xFFFF`.
pub type DeviceDutyCycles = ;