[][src]Enum mavlink::common::CellularStatusFlag

pub enum CellularStatusFlag {
    CELLULAR_STATUS_FLAG_UNKNOWN,
    CELLULAR_STATUS_FLAG_FAILED,
    CELLULAR_STATUS_FLAG_INITIALIZING,
    CELLULAR_STATUS_FLAG_LOCKED,
    CELLULAR_STATUS_FLAG_DISABLED,
    CELLULAR_STATUS_FLAG_DISABLING,
    CELLULAR_STATUS_FLAG_ENABLING,
    CELLULAR_STATUS_FLAG_ENABLED,
    CELLULAR_STATUS_FLAG_SEARCHING,
    CELLULAR_STATUS_FLAG_REGISTERED,
    CELLULAR_STATUS_FLAG_DISCONNECTING,
    CELLULAR_STATUS_FLAG_CONNECTING,
    CELLULAR_STATUS_FLAG_CONNECTED,
}

Variants

CELLULAR_STATUS_FLAG_UNKNOWN
CELLULAR_STATUS_FLAG_FAILED
CELLULAR_STATUS_FLAG_INITIALIZING
CELLULAR_STATUS_FLAG_LOCKED
CELLULAR_STATUS_FLAG_DISABLED
CELLULAR_STATUS_FLAG_DISABLING
CELLULAR_STATUS_FLAG_ENABLING
CELLULAR_STATUS_FLAG_ENABLED
CELLULAR_STATUS_FLAG_SEARCHING
CELLULAR_STATUS_FLAG_REGISTERED
CELLULAR_STATUS_FLAG_DISCONNECTING
CELLULAR_STATUS_FLAG_CONNECTING
CELLULAR_STATUS_FLAG_CONNECTED

Trait Implementations

impl Clone for CellularStatusFlag[src]

impl Copy for CellularStatusFlag[src]

impl Debug for CellularStatusFlag[src]

impl Default for CellularStatusFlag[src]

impl<'de> Deserialize<'de> for CellularStatusFlag[src]

impl FromPrimitive for CellularStatusFlag[src]

impl PartialEq<CellularStatusFlag> for CellularStatusFlag[src]

impl Serialize for CellularStatusFlag[src]

impl StructuralPartialEq for CellularStatusFlag[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.