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§
source§impl PartialEq<EUI64> for EUI64
impl PartialEq<EUI64> for EUI64
impl Copy for EUI64
impl StructuralPartialEq for EUI64
Auto Trait Implementations§
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