openthread/ot/types/
leader_data.rs1use crate::prelude_internal::*;
6
7#[derive(Debug, Default, Clone)]
11#[repr(transparent)]
12pub struct LeaderData(pub otLeaderData);
13
14impl_ot_castable!(LeaderData, otLeaderData);
15
16impl LeaderData {
17 pub fn data_version(&self) -> u8 {
19 self.0.mDataVersion
20 }
21
22 pub fn leader_router_id(&self) -> u8 {
24 self.0.mLeaderRouterId
25 }
26
27 pub fn partition_id(&self) -> u32 {
29 self.0.mPartitionId
30 }
31
32 pub fn stable_data_version(&self) -> u8 {
34 self.0.mStableDataVersion
35 }
36
37 pub fn weighting(&self) -> u8 {
39 self.0.mWeighting
40 }
41}