openthread/ot/types/
trel.rs

1// Copyright 2024 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 the Thread TREL counters.
8///
9/// Functional equivalent of [`otsys::otTrelCounters`](crate::otsys::otTrelCounters).
10#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct TrelCounters(pub otTrelCounters);
13
14impl_ot_castable!(TrelCounters, otTrelCounters);
15
16impl TrelCounters {
17    /// Get TREL tx packet counter
18    pub fn get_tx_packets(&self) -> u64 {
19        self.0.mTxPackets
20    }
21
22    /// Get TREL tx bytes counter
23    pub fn get_tx_bytes(&self) -> u64 {
24        self.0.mTxBytes
25    }
26
27    /// Get TREL tx failure counter
28    pub fn get_tx_failure(&self) -> u64 {
29        self.0.mTxFailure
30    }
31
32    /// Get TREL rx packet counter
33    pub fn get_rx_packets(&self) -> u64 {
34        self.0.mRxPackets
35    }
36
37    /// Get TREL rx bytes counter
38    pub fn get_rx_bytes(&self) -> u64 {
39        self.0.mRxBytes
40    }
41
42    /// Update TREL tx packet counter by `cnt`
43    pub fn update_tx_packets(&mut self, cnt: u64) {
44        self.0.mTxPackets += cnt;
45    }
46
47    /// Update TREL tx bytes counter by `cnt`
48    pub fn update_tx_bytes(&mut self, cnt: u64) {
49        self.0.mTxBytes += cnt;
50    }
51
52    /// Update TREL tx failure counter by `cnt`
53    pub fn update_tx_failure(&mut self, cnt: u64) {
54        self.0.mTxFailure += cnt;
55    }
56
57    /// Update TREL rx packet counter by `cnt`
58    pub fn update_rx_packets(&mut self, cnt: u64) {
59        self.0.mRxPackets += cnt;
60    }
61
62    /// Update TREL rx bytes counter by `cnt`
63    pub fn update_rx_bytes(&mut self, cnt: u64) {
64        self.0.mRxBytes += cnt;
65    }
66
67    /// Reset all counters
68    pub fn reset_counters(&mut self) {
69        self.0.mTxPackets = 0;
70        self.0.mTxBytes = 0;
71        self.0.mTxFailure = 0;
72        self.0.mRxPackets = 0;
73        self.0.mRxBytes = 0;
74    }
75}