openthread/ot/types/
leader_data.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 Thread Leader Data.
8///
9/// Functional equivalent of [`otsys::otLeaderData`](crate::otsys::otLeaderData).
10#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct LeaderData(pub otLeaderData);
13
14impl_ot_castable!(LeaderData, otLeaderData);
15
16impl LeaderData {
17    /// Full Network Data Version.
18    pub fn data_version(&self) -> u8 {
19        self.0.mDataVersion
20    }
21
22    /// Leader Router ID.
23    pub fn leader_router_id(&self) -> u8 {
24        self.0.mLeaderRouterId
25    }
26
27    /// Partition ID.
28    pub fn partition_id(&self) -> u32 {
29        self.0.mPartitionId
30    }
31
32    /// Stable Network Data Version.
33    pub fn stable_data_version(&self) -> u8 {
34        self.0.mStableDataVersion
35    }
36
37    /// Leader Weight.
38    pub fn weighting(&self) -> u8 {
39        self.0.mWeighting
40    }
41}