pub enum NetworkType {
None,
Mobile,
MobileRoaming,
WiFi,
Other,
}
Variants§
None
The network is not available
Mobile
A mobile network
MobileRoaming
A mobile roaming network
WiFi
A Wi-Fi network
Other
A different network type (e.g., Ethernet network)
Trait Implementations§
Source§impl Clone for NetworkType
impl Clone for NetworkType
Source§fn clone(&self) -> NetworkType
fn clone(&self) -> NetworkType
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 NetworkType
impl Debug for NetworkType
Source§impl<'de> Deserialize<'de> for NetworkType
impl<'de> Deserialize<'de> for NetworkType
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 PartialEq for NetworkType
impl PartialEq for NetworkType
Source§impl Serialize for NetworkType
impl Serialize for NetworkType
impl StructuralPartialEq for NetworkType
Auto Trait Implementations§
impl Freeze for NetworkType
impl RefUnwindSafe for NetworkType
impl Send for NetworkType
impl Sync for NetworkType
impl Unpin for NetworkType
impl UnwindSafe for NetworkType
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