[][src]Struct graph_rs_types::entitytypes::MobileApp

pub struct MobileApp {
    pub display_name: String,
    pub description: String,
    pub publisher: String,
    pub large_icon: MimeContent,
    pub created_date_time: String,
    pub last_modified_date_time: String,
    pub is_featured: bool,
    pub privacy_information_url: String,
    pub information_url: String,
    pub owner: String,
    pub developer: String,
    pub notes: String,
    pub publishing_state: MobileAppPublishingState,
    pub categories: Vec<MobileAppCategory>,
    pub assignments: Vec<MobileAppAssignment>,
}

Fields

display_name: Stringdescription: Stringpublisher: Stringlarge_icon: MimeContentcreated_date_time: Stringlast_modified_date_time: Stringis_featured: boolprivacy_information_url: Stringinformation_url: Stringowner: Stringdeveloper: Stringnotes: Stringpublishing_state: MobileAppPublishingStatecategories: Vec<MobileAppCategory>assignments: Vec<MobileAppAssignment>

Trait Implementations

impl Clone for MobileApp[src]

impl Eq for MobileApp[src]

impl PartialEq<MobileApp> for MobileApp[src]

impl Debug for MobileApp[src]

impl Serialize for MobileApp[src]

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

Auto Trait Implementations

Blanket Implementations

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> 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]