openthread/ot/types/
ext_address.rs1use crate::prelude_internal::*;
6
7#[derive(Default, Copy, Clone)]
10#[repr(transparent)]
11pub struct ExtAddress(pub otExtAddress);
12
13impl_ot_castable!(ExtAddress, otExtAddress);
14
15impl std::fmt::Debug for ExtAddress {
16 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
17 write!(f, "ExtAddress({})", hex::encode(self.as_slice()))
18 }
19}
20
21impl std::fmt::Display for ExtAddress {
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 ExtAddress {
28 fn from(value: [u8; 8]) -> Self {
29 Self(otExtAddress { m8: value })
30 }
31}
32
33impl ExtAddress {
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}