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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more