pub struct EUI48 {
pub mac_address: [u8; 6],
}Expand description
§MAC address record (EUI-48)
This record is used to translate between a 48-bit MAC address used by the IEEE 802 protocol family and a fully qualified domain name.
Fields§
§mac_address: [u8; 6]mac_address is the MAC address
Trait Implementations§
impl Copy for EUI48
impl StructuralPartialEq for EUI48
Auto Trait Implementations§
impl Freeze for EUI48
impl RefUnwindSafe for EUI48
impl Send for EUI48
impl Sync for EUI48
impl Unpin for EUI48
impl UnwindSafe for EUI48
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