openthread/ot/types/
ext_address.rs

1// Copyright 2021 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/// Data type representing a EUI64 address.
8/// Functional equivalent of [`otsys::otExtAddress`](crate::otsys::otExtAddress).
9#[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    /// Returns the underlying address octets.
35    pub fn into_array(self) -> [u8; 8] {
36        self.0.m8
37    }
38
39    /// Returns the Extended Address as a byte slice.
40    pub fn as_slice(&self) -> &[u8] {
41        &self.0.m8
42    }
43
44    /// Creates a `Vec<u8>` from this Extended Address.
45    pub fn to_vec(&self) -> Vec<u8> {
46        self.as_slice().to_vec()
47    }
48}