[][src]Struct google_androiddeviceprovisioning1::DeviceIdentifier

pub struct DeviceIdentifier {
    pub imei: Option<String>,
    pub model: Option<String>,
    pub serial_number: Option<String>,
    pub meid: Option<String>,
    pub manufacturer: Option<String>,
}

Encapsulates hardware and product IDs to identify a manufactured device. To understand requirements on identifier sets, read Identifiers.

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

Fields

imei: Option<String>

The device’s IMEI number. Validated on input.

model: Option<String>

The device model's name. Matches the device's built-in value returned from android.os.Build.MODEL. Allowed values are listed in models.

serial_number: Option<String>

The manufacturer's serial number for the device. This value might not be unique across different device models.

meid: Option<String>

The device’s MEID number.

manufacturer: Option<String>

The device manufacturer’s name. Matches the device's built-in value returned from android.os.Build.MANUFACTURER. Allowed values are listed in manufacturers.

Trait Implementations

impl Part for DeviceIdentifier[src]

impl Default for DeviceIdentifier[src]

impl Clone for DeviceIdentifier[src]

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

Performs copy-assignment from source. Read more

impl Debug for DeviceIdentifier[src]

impl Serialize for DeviceIdentifier[src]

impl<'de> Deserialize<'de> for DeviceIdentifier[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]