[][src]Struct google_androidmanagement1::NetworkInfo

pub struct NetworkInfo {
    pub imei: Option<String>,
    pub network_operator_name: Option<String>,
    pub meid: Option<String>,
    pub wifi_mac_address: Option<String>,
}

Device network info.

This type is not used in any activity, and only used as part of another schema.

Fields

imei: Option<String>

IMEI number of the GSM device. For example, A1000031212.

network_operator_name: Option<String>

Alphabetic name of current registered operator. For example, Vodafone.

meid: Option<String>

MEID number of the CDMA device. For example, A00000292788E1.

wifi_mac_address: Option<String>

Wi-Fi MAC address of the device. For example, 7c:11:11:11:11:11.

Trait Implementations

impl Part for NetworkInfo[src]

impl Default for NetworkInfo[src]

impl Clone for NetworkInfo[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for NetworkInfo[src]

impl Serialize for NetworkInfo[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]