[][src]Struct google_androidpublisher2::DeviceMetadata

pub struct DeviceMetadata {
    pub screen_density_dpi: Option<i32>,
    pub screen_height_px: Option<i32>,
    pub cpu_model: Option<String>,
    pub product_name: Option<String>,
    pub native_platform: Option<String>,
    pub device_class: Option<String>,
    pub cpu_make: Option<String>,
    pub ram_mb: Option<i32>,
    pub manufacturer: Option<String>,
    pub gl_es_version: Option<i32>,
    pub screen_width_px: Option<i32>,
}

There is no detailed description.

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

Fields

screen_density_dpi: Option<i32>

Screen density in DPI

screen_height_px: Option<i32>

Screen height in pixels

cpu_model: Option<String>

Device CPU model e.g. "MSM8974"

product_name: Option<String>

Device model name (e.g. Droid)

native_platform: Option<String>

Comma separated list of native platforms (e.g. "arm", "arm7")

device_class: Option<String>

Device class (e.g. tablet)

cpu_make: Option<String>

Device CPU make e.g. "Qualcomm"

ram_mb: Option<i32>

Device RAM in Megabytes e.g. "2048"

manufacturer: Option<String>

Device manufacturer (e.g. Motorola)

gl_es_version: Option<i32>

OpenGL version

screen_width_px: Option<i32>

Screen width in pixels

Trait Implementations

impl Clone for DeviceMetadata[src]

impl Debug for DeviceMetadata[src]

impl Default for DeviceMetadata[src]

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

impl Part for DeviceMetadata[src]

impl Serialize for DeviceMetadata[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.

impl<T> Typeable for T where
    T: Any