pub enum LinkKind {
Lora,
Wifi,
Cellular,
NbIot,
Satellite,
Ethernet,
Mesh,
}Expand description
The kind of link a group reports over, shown as a labelled service before the bars.
Variants§
Lora
Long-range, low-power radio.
Wifi
Local WiFi.
Cellular
A cellular modem (LTE-M, 2G/4G, or similar).
NbIot
A narrowband-IoT cellular link, common for low-power field clinics.
Satellite
A satellite uplink.
Ethernet
Wired Ethernet.
Mesh
A multi-hop radio mesh.
Trait Implementations§
impl Copy for LinkKind
Source§impl<'de> Deserialize<'de> for LinkKind
impl<'de> Deserialize<'de> for LinkKind
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
impl Eq for LinkKind
impl StructuralPartialEq for LinkKind
Auto Trait Implementations§
impl Freeze for LinkKind
impl RefUnwindSafe for LinkKind
impl Send for LinkKind
impl Sync for LinkKind
impl Unpin for LinkKind
impl UnsafeUnpin for LinkKind
impl UnwindSafe for LinkKind
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