Struct google_androiddeviceprovisioning1::DeviceIdentifier[][src]

pub struct DeviceIdentifier {
    pub imei: 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 learn more, read Identifiers.

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

Fields

The device’s IMEI number. Validated on input.

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

The device’s MEID number.

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

Trait Implementations

impl Default for DeviceIdentifier
[src]

Returns the "default value" for a type. Read more

impl Clone for DeviceIdentifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DeviceIdentifier
[src]

Formats the value using the given formatter. Read more

impl Part for DeviceIdentifier
[src]

Auto Trait Implementations