pub struct StatusReportingSettings {
pub application_reporting_settings: Option<ApplicationReportingSettings>,
pub application_reports_enabled: Option<bool>,
pub common_criteria_mode_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.
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 moreSource§impl Debug for StatusReportingSettings
impl Debug for StatusReportingSettings
Source§impl Default for StatusReportingSettings
impl Default for StatusReportingSettings
Source§fn default() -> StatusReportingSettings
fn default() -> StatusReportingSettings
Source§impl<'de> Deserialize<'de> for StatusReportingSettings
impl<'de> Deserialize<'de> for StatusReportingSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for StatusReportingSettings
impl Serialize for StatusReportingSettings
impl Part for StatusReportingSettings
Auto Trait Implementations§
impl Freeze for StatusReportingSettings
impl RefUnwindSafe for StatusReportingSettings
impl Send for StatusReportingSettings
impl Sync for StatusReportingSettings
impl Unpin for StatusReportingSettings
impl UnwindSafe for StatusReportingSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more