[][src]Enum simctl::status_bar::DataNetworkType

pub enum DataNetworkType {
    Wifi,
    Cell3G,
    Cell4G,
    CellLte,
    CellLteA,
    CellLtePlus,
}

Controls the data network that is shown in the status bar.

Variants

Wifi

Indicates that the device is connected to a Wi-Fi network.

Cell3G

Indicates that the device is connected to a 3G cellular network.

Cell4G

Indicates that the device is connected to a 4G cellular network.

CellLte

Indicates that the device is connected to a LTE cellular network.

CellLteA

Indicates that the device is connected to a LTE-Advanced cellular network.

CellLtePlus

Indicates that the device is connected to a LTE+ cellular network.

Trait Implementations

impl Clone for DataNetworkType[src]

impl Copy for DataNetworkType[src]

impl Debug for DataNetworkType[src]

impl Eq for DataNetworkType[src]

impl PartialEq<DataNetworkType> for DataNetworkType[src]

impl StructuralEq for DataNetworkType[src]

impl StructuralPartialEq for DataNetworkType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.