openthread/ot/types/
radio_coex_metrics.rs

1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::prelude_internal::*;
6
7/// This structure represents radio coexistence metrics.
8///
9/// Functional equivalent of [`otsys::otRadioCoexMetrics`](crate::otsys::otRadioCoexMetrics).
10#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct RadioCoexMetrics(pub otRadioCoexMetrics);
13
14impl_ot_castable!(RadioCoexMetrics, otRadioCoexMetrics);
15
16impl RadioCoexMetrics {
17    /// Number of grant glitches.
18    pub fn num_grant_glitch(&self) -> u32 {
19        self.0.mNumGrantGlitch
20    }
21
22    ///  Number of tx requests.
23    pub fn num_tx_request(&self) -> u32 {
24        self.0.mNumTxRequest
25    }
26
27    /// Number of tx requests while grant was active.
28    pub fn num_tx_grant_immediate(&self) -> u32 {
29        self.0.mNumTxGrantImmediate
30    }
31
32    /// Number of tx requests while grant was inactive.
33    pub fn num_tx_grant_wait(&self) -> u32 {
34        self.0.mNumTxGrantWait
35    }
36
37    /// Number of tx requests while grant was inactive that were ultimately granted.
38    pub fn num_tx_grant_wait_activated(&self) -> u32 {
39        self.0.mNumTxGrantWaitActivated
40    }
41
42    /// Number of tx requests while grant was inactive that timed out.
43    pub fn num_tx_grant_wait_timeout(&self) -> u32 {
44        self.0.mNumTxGrantWaitTimeout
45    }
46
47    /// Number of tx that were in progress when grant was deactivated.
48    pub fn num_tx_grant_deactivated_during_request(&self) -> u32 {
49        self.0.mNumTxGrantDeactivatedDuringRequest
50    }
51
52    /// Number of tx requests that were not granted within 50us.
53    pub fn num_tx_delayed_grant(&self) -> u32 {
54        self.0.mNumTxDelayedGrant
55    }
56
57    /// Average time in usec from tx request to grant.
58    pub fn avg_tx_request_to_grant_time(&self) -> u32 {
59        self.0.mAvgTxRequestToGrantTime
60    }
61
62    /// Number of rx requests.
63    pub fn num_rx_request(&self) -> u32 {
64        self.0.mNumRxRequest
65    }
66
67    /// Number of rx requests while grant was active.
68    pub fn num_rx_grant_immediate(&self) -> u32 {
69        self.0.mNumRxGrantImmediate
70    }
71
72    /// Number of rx requests while grant was inactive.
73    pub fn num_rx_grant_wait(&self) -> u32 {
74        self.0.mNumRxGrantWait
75    }
76
77    /// Number of rx requests while grant was inactive that were ultimately granted.
78    pub fn num_rx_grant_wait_activated(&self) -> u32 {
79        self.0.mNumRxGrantWaitActivated
80    }
81
82    /// Number of rx requests while grant was inactive that timed out.
83    pub fn num_rx_grant_wait_timeout(&self) -> u32 {
84        self.0.mNumRxGrantWaitTimeout
85    }
86
87    /// Number of rx that were in progress when grant was deactivated.
88    pub fn num_rx_grant_deactivated_during_request(&self) -> u32 {
89        self.0.mNumRxGrantDeactivatedDuringRequest
90    }
91
92    /// Number of rx requests that were not granted within 50us.
93    pub fn num_rx_delayed_grant(&self) -> u32 {
94        self.0.mNumRxDelayedGrant
95    }
96
97    /// Average time in usec from rx request to grant.
98    pub fn avg_rx_request_to_grant_time(&self) -> u32 {
99        self.0.mAvgRxRequestToGrantTime
100    }
101
102    /// Number of rx requests that completed without receiving grant.
103    pub fn num_rx_grant_none(&self) -> u32 {
104        self.0.mNumRxGrantNone
105    }
106
107    /// Stats collection stopped due to saturation.
108    pub fn stopped(&self) -> bool {
109        self.0.mStopped
110    }
111}