[][src]Struct graph_rs_types::entitytypes::Device

pub struct Device {
    pub account_enabled: bool,
    pub alternative_security_ids: Vec<AlternativeSecurityId>,
    pub approximate_last_sign_in_date_time: String,
    pub compliance_expiration_date_time: String,
    pub device_id: String,
    pub device_metadata: String,
    pub device_version: i32,
    pub display_name: String,
    pub is_compliant: bool,
    pub is_managed: bool,
    pub on_premises_last_sync_date_time: String,
    pub on_premises_sync_enabled: bool,
    pub operating_system: String,
    pub operating_system_version: String,
    pub physical_ids: Vec<String>,
    pub profile_type: String,
    pub system_labels: Vec<String>,
    pub trust_type: String,
    pub member_of: Vec<DirectoryObject>,
    pub registered_owners: Vec<DirectoryObject>,
    pub registered_users: Vec<DirectoryObject>,
    pub transitive_member_of: Vec<DirectoryObject>,
    pub extensions: Vec<Extension>,
}

Fields

account_enabled: boolalternative_security_ids: Vec<AlternativeSecurityId>approximate_last_sign_in_date_time: Stringcompliance_expiration_date_time: Stringdevice_id: Stringdevice_metadata: Stringdevice_version: i32display_name: Stringis_compliant: boolis_managed: boolon_premises_last_sync_date_time: Stringon_premises_sync_enabled: booloperating_system: Stringoperating_system_version: Stringphysical_ids: Vec<String>profile_type: Stringsystem_labels: Vec<String>trust_type: Stringmember_of: Vec<DirectoryObject>registered_owners: Vec<DirectoryObject>registered_users: Vec<DirectoryObject>transitive_member_of: Vec<DirectoryObject>extensions: Vec<Extension>

Trait Implementations

impl Eq for Device[src]

impl Clone for Device[src]

impl PartialEq<Device> for Device[src]

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 RefUnwindSafe for Device

impl UnwindSafe for Device

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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