[][src]Struct google_androidenterprise1::Device

pub struct Device {
    pub policy: Option<Policy>,
    pub report: Option<DeviceReport>,
    pub kind: Option<String>,
    pub android_id: Option<String>,
    pub management_type: Option<String>,
}

A Devices resource represents a mobile device managed by the EMM and belonging to a specific enterprise user.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

policy: Option<Policy>

The policy enforced on the device.

report: Option<DeviceReport>

The device report updated with the latest app states.

kind: Option<String>

Identifies what kind of resource this is. Value: the fixed string "androidenterprise#device".

android_id: Option<String>

The Google Play Services Android ID for the device encoded as a lowercase hex string. For example, "123456789abcdef0".

management_type: Option<String>

Identifies the extent to which the device is controlled by a managed Google Play EMM in various deployment configurations.

Possible values include:

  • "managedDevice", a device that has the EMM's device policy controller (DPC) as the device owner.
  • "managedProfile", a device that has a profile managed by the DPC (DPC is profile owner) in addition to a separate, personal profile that is unavailable to the DPC.
  • "containerApp", no longer used (deprecated).
  • "unmanagedProfile", a device that has been allowed (by the domain's admin, using the Admin Console to enable the privilege) to use managed Google Play, but the profile is itself not owned by a DPC.

Trait Implementations

impl Resource for Device[src]

impl ResponseResult for Device[src]

impl RequestValue 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]