Return the address as an array of bytes
(&self)
| 18 | |
| 19 | /// Return the address as an array of bytes |
| 20 | pub fn bytes(&self) -> [u8; 6] { |
| 21 | self.octet |
| 22 | } |
| 23 | |
| 24 | pub fn from_u64(value: u64) -> Self { |
| 25 | MacAddress{octet:[ |
nothing calls this directly
no outgoing calls
no test coverage detected