openthread/ot/types/
scan_results.rs1use crate::prelude_internal::*;
6
7#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct ActiveScanResult(pub otActiveScanResult);
13
14impl_ot_castable!(ActiveScanResult, otActiveScanResult);
15
16impl ActiveScanResult {
17 pub fn channel(&self) -> ChannelIndex {
19 self.0.mChannel
20 }
21
22 pub fn rssi(&self) -> Decibels {
24 self.0.mRssi
25 }
26
27 pub fn ext_address(&self) -> ExtAddress {
29 self.0.mExtAddress.into()
30 }
31
32 pub fn extended_pan_id(&self) -> ExtendedPanId {
34 self.0.mExtendedPanId.into()
35 }
36
37 #[deprecated]
41 pub fn is_joinable(&self) -> bool {
42 self.0.mDiscover()
43 }
44
45 pub fn discover(&self) -> bool {
47 self.0.mDiscover()
48 }
49
50 pub fn is_native(&self) -> bool {
52 self.0.mIsNative()
53 }
54
55 pub fn joiner_udp_port(&self) -> u16 {
57 self.0.mJoinerUdpPort
58 }
59
60 pub fn lqi(&self) -> u8 {
62 self.0.mLqi
63 }
64
65 pub fn network_name(&self) -> &NetworkName {
67 NetworkName::ref_from_ot_ref(&self.0.mNetworkName)
68 }
69
70 pub fn pan_id(&self) -> PanId {
72 self.0.mPanId
73 }
74
75 pub fn version(&self) -> u32 {
77 self.0.mVersion()
78 }
79
80 pub fn steering_data(&self) -> &[u8] {
82 &self.0.mSteeringData.m8[0..self.0.mSteeringData.mLength as usize]
83 }
84}
85
86#[derive(Debug, Default, Clone)]
90#[repr(transparent)]
91pub struct EnergyScanResult(pub otEnergyScanResult);
92
93impl_ot_castable!(EnergyScanResult, otEnergyScanResult);
94
95impl EnergyScanResult {
96 pub fn channel(&self) -> ChannelIndex {
98 self.0.mChannel
99 }
100
101 pub fn max_rssi(&self) -> Decibels {
103 self.0.mMaxRssi
104 }
105}