1 #![allow(unused_imports)]
2 use wasm_bindgen::prelude::*;
3 #[wasm_bindgen]
4 #[doc = "The `ConnectionType` enum."]
5 #[doc = ""]
6 #[doc = "*This API requires the following crate features to be activated: `ConnectionType`*"]
7 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
8 pub enum ConnectionType {
9     Cellular = "cellular",
10     Bluetooth = "bluetooth",
11     Ethernet = "ethernet",
12     Wifi = "wifi",
13     Other = "other",
14     None = "none",
15     Unknown = "unknown",
16 }
17