openthread/ot/types/
external_route_config.rs1use crate::prelude_internal::*;
6
7use core::fmt::{Debug, Formatter};
8
9#[derive(Default, Clone, Copy)]
12#[repr(transparent)]
13pub struct ExternalRouteConfig(pub otExternalRouteConfig);
14
15impl_ot_castable!(ExternalRouteConfig, otExternalRouteConfig);
16
17impl Debug for ExternalRouteConfig {
18 fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
19 self.prefix().fmt(f)?;
20 if self.is_stable() {
21 write!(f, " STABLE")?;
22 }
23 if self.is_next_hop_this_device() {
24 write!(f, " NEXT_HOP_IS_THIS_DEVICE")?;
25 }
26 Ok(())
27 }
28}
29
30impl std::fmt::Display for ExternalRouteConfig {
31 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
32 std::fmt::Debug::fmt(self, f)
33 }
34}
35
36impl ExternalRouteConfig {
37 pub fn from_prefix<T: Into<otIp6Prefix>>(prefix: T) -> ExternalRouteConfig {
39 let mut ret = ExternalRouteConfig(otExternalRouteConfig {
40 mPrefix: prefix.into(),
41 mRloc16: 0,
42 ..otExternalRouteConfig::default()
43 });
44 ret.set_stable(true);
45 ret
46 }
47
48 pub fn prefix(&self) -> &Ip6Prefix {
50 (&self.0.mPrefix).into()
51 }
52
53 pub fn rloc16(&self) -> u16 {
55 self.0.mRloc16
56 }
57
58 pub fn route_preference(&self) -> RoutePreference {
60 RoutePreference::from_i32(self.0.mPreference()).expect("Invalid route preference")
61 }
62
63 pub fn set_route_preference(&mut self, pref: RoutePreference) {
65 self.0.set_mPreference(pref as i32);
66 }
67
68 pub fn is_stable(&self) -> bool {
70 self.0.mStable()
71 }
72
73 pub fn set_stable(&mut self, x: bool) {
75 self.0.set_mStable(x)
76 }
77
78 pub fn is_next_hop_this_device(&self) -> bool {
80 self.0.mNextHopIsThisDevice()
81 }
82}