openthread/ot/types/
packets_and_bytes.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 counters for packets and bytes.
8///
9/// Functional equivalent of [`otsys::otPacketsAndBytes`](crate::otsys::otPacketsAndBytes).
10#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct PacketsAndBytes(pub otPacketsAndBytes);
13
14impl_ot_castable!(PacketsAndBytes, otPacketsAndBytes);
15
16impl PacketsAndBytes {
17    /// The number of packets.
18    pub fn packets(&self) -> u64 {
19        self.0.mPackets
20    }
21
22    /// The number of bytes.
23    pub fn bytes(&self) -> u64 {
24        self.0.mBytes
25    }
26}