#[repr(u8)]pub enum RadioFault {
Unspecified = 0,
Wififault = 1,
Cellularfault = 2,
Threadfault = 3,
Nfcfault = 4,
Blefault = 5,
Ethernetfault = 6,
}Variants§
Unspecified = 0
The Node has encountered an unspecified radio fault.
Wififault = 1
The Node has encountered a fault with its Wi-Fi radio.
Cellularfault = 2
The Node has encountered a fault with its cellular radio.
Threadfault = 3
The Node has encountered a fault with its 802.15.4 radio.
Nfcfault = 4
The Node has encountered a fault with its NFC radio.
Blefault = 5
The Node has encountered a fault with its BLE radio.
Ethernetfault = 6
The Node has encountered a fault with its Ethernet controller.
Implementations§
Trait Implementations§
Source§impl Clone for RadioFault
impl Clone for RadioFault
Source§fn clone(&self) -> RadioFault
fn clone(&self) -> RadioFault
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RadioFault
impl Debug for RadioFault
Source§impl<'de> Deserialize<'de> for RadioFault
impl<'de> Deserialize<'de> for RadioFault
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<RadioFault> for u8
impl From<RadioFault> for u8
Source§fn from(val: RadioFault) -> Self
fn from(val: RadioFault) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RadioFault
impl PartialEq for RadioFault
Source§impl Serialize for RadioFault
impl Serialize for RadioFault
impl Copy for RadioFault
impl Eq for RadioFault
impl StructuralPartialEq for RadioFault
Auto Trait Implementations§
impl Freeze for RadioFault
impl RefUnwindSafe for RadioFault
impl Send for RadioFault
impl Sync for RadioFault
impl Unpin for RadioFault
impl UnwindSafe for RadioFault
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