[][src]Struct google_androiddeviceprovisioning1::Dpc

pub struct Dpc {
    pub package_name: Option<String>,
    pub dpc_name: Option<String>,
    pub name: Option<String>,
}

An EMM's DPC (device policy controller). Zero-touch enrollment installs a DPC (listed in the Configuration) on a device to maintain the customer's mobile policies. All the DPCs listed by the API support zero-touch enrollment and are available in Google Play.

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

Fields

package_name: Option<String>

Output only. The DPC's Android application ID that looks like a Java package name. Zero-touch enrollment installs the DPC app onto a device using this identifier.

dpc_name: Option<String>

Output only. The title of the DPC app in Google Play. For example, Google Apps Device Policy. Useful in an application's user interface.

name: Option<String>

Output only. The API resource name in the format customers/[CUSTOMER_ID]/dpcs/[DPC_ID]. Assigned by the server. To maintain a reference to a DPC across customer accounts, persist and match the last path component (DPC_ID).

Trait Implementations

impl Part for Dpc[src]

impl Default for Dpc[src]

impl Clone for Dpc[src]

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

Performs copy-assignment from source. Read more

impl Debug for Dpc[src]

impl Serialize for Dpc[src]

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

Auto Trait Implementations

impl Send for Dpc

impl Unpin for Dpc

impl Sync for Dpc

impl UnwindSafe for Dpc

impl RefUnwindSafe for Dpc

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]