Searched refs:AddressingMode (Results 1 – 2 of 2) sorted by relevance
/smoltcp-0.9.1/src/wire/ |
D | ieee802154.rs | 37 pub enum AddressingMode(u8) { 44 impl AddressingMode { implementation 48 AddressingMode::Absent => 0, in size() 49 AddressingMode::Short => 2, in size() 50 AddressingMode::Extended => 8, in size() 51 AddressingMode::Unknown(_) => 0, // TODO(thvdveld): what do we need to here? in size() 56 impl fmt::Display for AddressingMode { implementation 59 AddressingMode::Absent => write!(f, "Absent"), in fmt() 60 AddressingMode::Short => write!(f, "Short"), in fmt() 61 AddressingMode::Extended => write!(f, "Extended"), in fmt() [all …]
|
D | mod.rs | 159 Address as Ieee802154Address, AddressingMode as Ieee802154AddressingMode,
|