Home
last modified time | relevance | path

Searched defs:HardwareAddress (Results 1 – 3 of 3) sorted by relevance

/smoltcp-0.9.1/src/wire/
Dmod.rs278 pub enum HardwareAddress { enum
286 impl HardwareAddress { impl
336 impl core::fmt::Display for HardwareAddress { implementation
348 impl From<EthernetAddress> for HardwareAddress { implementation
355 impl From<Ieee802154Address> for HardwareAddress { implementation
401 pub fn parse(&self, medium: Medium) -> Result<HardwareAddress> { in parse()
/smoltcp-0.9.1/src/iface/interface/
Dmod.rs588 pub fn hardware_addr(&self) -> HardwareAddress { in hardware_addr()
609 pub fn set_hardware_addr(&mut self, addr: HardwareAddress) { in set_hardware_addr()
1051 pub(crate) fn hardware_addr(&self) -> Option<HardwareAddress> { in hardware_addr()
1198 fn check_hardware_addr(addr: &HardwareAddress) { in check_hardware_addr()
1531 ) -> Result<(HardwareAddress, Tx), DispatchError> in lookup_hardware_addr()
/smoltcp-0.9.1/src/iface/
Dneighbor.rs69 hardware_addr: HardwareAddress, in fill()