[][src]Struct google_admin1_directory::MobileDeviceApplications

pub struct MobileDeviceApplications {
    pub version_code: Option<i32>,
    pub package_name: Option<String>,
    pub display_name: Option<String>,
    pub version_name: Option<String>,
    pub permission: Option<Vec<String>>,
}

List of applications installed on Mobile Device

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

Fields

version_code: Option<i32>

Version code of application

package_name: Option<String>

Package name of application

display_name: Option<String>

Display name of application

version_name: Option<String>

Version name of application

permission: Option<Vec<String>>

List of Permissions for application

Trait Implementations

impl Clone for MobileDeviceApplications[src]

impl Debug for MobileDeviceApplications[src]

impl Default for MobileDeviceApplications[src]

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

impl NestedType for MobileDeviceApplications[src]

impl Part for MobileDeviceApplications[src]

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