Struct DeviceManagement

Source
pub struct DeviceManagement {
Show 30 fields pub subscription_state: DeviceManagementSubscriptionState, pub settings: DeviceManagementSettings, pub intune_brand: IntuneBrand, pub terms_and_conditions: Vec<TermsAndConditions>, pub apple_push_notification_certificate: ApplePushNotificationCertificate, pub managed_device_overview: ManagedDeviceOverview, pub detected_apps: Vec<DetectedApp>, pub managed_devices: Vec<ManagedDevice>, pub device_configurations: Vec<DeviceConfiguration>, pub device_compliance_policies: Vec<DeviceCompliancePolicy>, pub software_update_status_summary: SoftwareUpdateStatusSummary, pub device_compliance_policy_device_state_summary: DeviceCompliancePolicyDeviceStateSummary, pub device_compliance_policy_setting_state_summaries: Vec<DeviceCompliancePolicySettingStateSummary>, pub device_configuration_device_state_summaries: DeviceConfigurationDeviceStateSummary, pub ios_update_statuses: Vec<IosUpdateDeviceStatus>, pub device_categories: Vec<DeviceCategory>, pub exchange_connectors: Vec<DeviceManagementExchangeConnector>, pub device_enrollment_configurations: Vec<DeviceEnrollmentConfiguration>, pub conditional_access_settings: OnPremisesConditionalAccessSettings, pub mobile_threat_defense_connectors: Vec<MobileThreatDefenseConnector>, pub device_management_partners: Vec<DeviceManagementPartner>, pub notification_message_templates: Vec<NotificationMessageTemplate>, pub role_definitions: Vec<RoleDefinition>, pub role_assignments: Vec<DeviceAndAppManagementRoleAssignment>, pub resource_operations: Vec<ResourceOperation>, pub telecom_expense_management_partners: Vec<TelecomExpenseManagementPartner>, pub remote_assistance_partners: Vec<RemoteAssistancePartner>, pub windows_information_protection_app_learning_summaries: Vec<WindowsInformationProtectionAppLearningSummary>, pub windows_information_protection_network_learning_summaries: Vec<WindowsInformationProtectionNetworkLearningSummary>, pub troubleshooting_events: Vec<DeviceManagementTroubleshootingEvent>,
}

Fields§

§subscription_state: DeviceManagementSubscriptionState§settings: DeviceManagementSettings§intune_brand: IntuneBrand§terms_and_conditions: Vec<TermsAndConditions>§apple_push_notification_certificate: ApplePushNotificationCertificate§managed_device_overview: ManagedDeviceOverview§detected_apps: Vec<DetectedApp>§managed_devices: Vec<ManagedDevice>§device_configurations: Vec<DeviceConfiguration>§device_compliance_policies: Vec<DeviceCompliancePolicy>§software_update_status_summary: SoftwareUpdateStatusSummary§device_compliance_policy_device_state_summary: DeviceCompliancePolicyDeviceStateSummary§device_compliance_policy_setting_state_summaries: Vec<DeviceCompliancePolicySettingStateSummary>§device_configuration_device_state_summaries: DeviceConfigurationDeviceStateSummary§ios_update_statuses: Vec<IosUpdateDeviceStatus>§device_categories: Vec<DeviceCategory>§exchange_connectors: Vec<DeviceManagementExchangeConnector>§device_enrollment_configurations: Vec<DeviceEnrollmentConfiguration>§conditional_access_settings: OnPremisesConditionalAccessSettings§mobile_threat_defense_connectors: Vec<MobileThreatDefenseConnector>§device_management_partners: Vec<DeviceManagementPartner>§notification_message_templates: Vec<NotificationMessageTemplate>§role_definitions: Vec<RoleDefinition>§role_assignments: Vec<DeviceAndAppManagementRoleAssignment>§resource_operations: Vec<ResourceOperation>§telecom_expense_management_partners: Vec<TelecomExpenseManagementPartner>§remote_assistance_partners: Vec<RemoteAssistancePartner>§windows_information_protection_app_learning_summaries: Vec<WindowsInformationProtectionAppLearningSummary>§windows_information_protection_network_learning_summaries: Vec<WindowsInformationProtectionNetworkLearningSummary>§troubleshooting_events: Vec<DeviceManagementTroubleshootingEvent>

Trait Implementations§

Source§

impl Clone for DeviceManagement

Source§

fn clone(&self) -> DeviceManagement

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DeviceManagement

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for DeviceManagement

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for DeviceManagement

Source§

fn eq(&self, other: &DeviceManagement) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for DeviceManagement

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for DeviceManagement

Source§

impl StructuralPartialEq for DeviceManagement

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,