openthread/ot/types/
ip_counters.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 the IP layer counters.
8///
9/// Functional equivalent of [`otsys::otIpCounters`](crate::otsys::otIpCounters).
10#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct IpCounters(pub otIpCounters);
13
14impl_ot_castable!(IpCounters, otIpCounters);
15
16impl IpCounters {
17    /// The number of IPv6 packets successfully transmitted
18    pub fn tx_success(&self) -> u32 {
19        self.0.mTxSuccess
20    }
21
22    /// The number of IPv6 packets successfully received.
23    pub fn rx_success(&self) -> u32 {
24        self.0.mRxSuccess
25    }
26
27    /// The number of IPv6 packets failed to transmit.
28    pub fn tx_failure(&self) -> u32 {
29        self.0.mTxFailure
30    }
31
32    /// The number of IPv6 packets failed to receive.
33    pub fn rx_failure(&self) -> u32 {
34        self.0.mRxFailure
35    }
36}