[][src]Struct google_fitness1::Device

pub struct Device {
    pub model: Option<String>,
    pub version: Option<String>,
    pub type_: Option<String>,
    pub uid: Option<String>,
    pub manufacturer: Option<String>,
}

Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source.

The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including:

  • Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance)
  • Display the source of data to the user (by using the device make / model)
  • Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone)
  • Build different analysis models for each device/version.

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

Fields

model: Option<String>

End-user visible model name for the device.

version: Option<String>

Version string for the device hardware/software.

type_: Option<String>

A constant representing the type of the device.

uid: Option<String>

The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form.

manufacturer: Option<String>

Manufacturer of the product/hardware.

Trait Implementations

impl Part for Device[src]

impl Default for Device[src]

impl Clone for Device[src]

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

Performs copy-assignment from source. Read more

impl Debug for Device[src]

impl Serialize for Device[src]

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

Auto Trait Implementations

impl Send for Device

impl Unpin for Device

impl Sync for Device

impl UnwindSafe for Device

impl RefUnwindSafe for Device

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]