pub struct EUI64 {
pub mac_address: [u8; 8],
}Expand description
§MAC address record (EUI-64)
This record is used to translate between a 64-bit MAC address used by the IEEE 802 protocol family and a fully qualified domain name.
Fields§
§mac_address: [u8; 8]mac_address is the MAC address
Trait Implementations§
impl Copy for EUI64
impl StructuralPartialEq for EUI64
Auto Trait Implementations§
impl Freeze for EUI64
impl RefUnwindSafe for EUI64
impl Send for EUI64
impl Sync for EUI64
impl Unpin for EUI64
impl UnwindSafe for EUI64
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more