openthread/ot/types/
extended_pan_id.rs1use crate::prelude_internal::*;
6
7#[derive(Default, Copy, Clone)]
10#[repr(transparent)]
11pub struct ExtendedPanId(pub otExtendedPanId);
12
13impl_ot_castable!(ExtendedPanId, otExtendedPanId);
14
15impl std::fmt::Debug for ExtendedPanId {
16 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
17 write!(f, "ExtendedPanId({})", hex::encode(self.as_slice()))
18 }
19}
20
21impl std::fmt::Display for ExtendedPanId {
22 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
23 write!(f, "{}", hex::encode(self.as_slice()))
24 }
25}
26
27impl std::convert::From<[u8; 8]> for ExtendedPanId {
28 fn from(value: [u8; 8]) -> Self {
29 Self(otExtendedPanId { m8: value })
30 }
31}
32
33impl ExtendedPanId {
34 pub fn into_array(self) -> [u8; 8] {
36 self.0.m8
37 }
38
39 pub fn as_slice(&self) -> &[u8] {
41 &self.0.m8
42 }
43
44 pub fn to_vec(&self) -> Vec<u8> {
46 self.as_slice().to_vec()
47 }
48}