pub struct StatusReportingSettings {
pub application_reporting_settings: Option<ApplicationReportingSettings>,
pub application_reports_enabled: Option<bool>,
pub common_criteria_mode_enabled: Option<bool>,
pub default_application_info_reporting_enabled: Option<bool>,
pub device_settings_enabled: Option<bool>,
pub display_info_enabled: Option<bool>,
pub hardware_status_enabled: Option<bool>,
pub memory_info_enabled: Option<bool>,
pub network_info_enabled: Option<bool>,
pub power_management_events_enabled: Option<bool>,
pub software_info_enabled: Option<bool>,
pub system_properties_enabled: Option<bool>,
}Expand description
Settings controlling the behavior of status reports.
This type is not used in any activity, and only used as part of another schema.
Fields§
§application_reporting_settings: Option<ApplicationReportingSettings>Application reporting settings. Only applicable if application_reports_enabled is true.
application_reports_enabled: Option<bool>Whether app reports are enabled.
common_criteria_mode_enabled: Option<bool>Whether Common Criteria Mode reporting is enabled. This is supported only on company-owned devices.
default_application_info_reporting_enabled: Option<bool>Optional. Whether defaultApplicationInfo reporting is enabled.
device_settings_enabled: Option<bool>Whether device settings reporting is enabled.
display_info_enabled: Option<bool>Whether displays reporting is enabled. Report data is not available for personally owned devices with work profiles.
hardware_status_enabled: Option<bool>Whether hardware status reporting is enabled. Report data is not available for personally owned devices with work profiles.
memory_info_enabled: Option<bool>Whether memory event reporting is enabled.
network_info_enabled: Option<bool>Whether network info reporting is enabled.
power_management_events_enabled: Option<bool>Whether power management event reporting is enabled. Report data is not available for personally owned devices with work profiles.
software_info_enabled: Option<bool>Whether software info reporting is enabled.
system_properties_enabled: Option<bool>Whether system properties reporting is enabled.
Trait Implementations§
Source§impl Clone for StatusReportingSettings
impl Clone for StatusReportingSettings
Source§fn clone(&self) -> StatusReportingSettings
fn clone(&self) -> StatusReportingSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more