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
sourceimpl Clone for StatusReportingSettings
impl Clone for StatusReportingSettings
sourcefn clone(&self) -> StatusReportingSettings
fn clone(&self) -> StatusReportingSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for StatusReportingSettings
impl Debug for StatusReportingSettings
sourceimpl Default for StatusReportingSettings
impl Default for StatusReportingSettings
sourcefn default() -> StatusReportingSettings
fn default() -> StatusReportingSettings
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for StatusReportingSettings
impl<'de> Deserialize<'de> for StatusReportingSettings
sourcefn 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>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for StatusReportingSettings
impl Serialize for StatusReportingSettings
impl Part for StatusReportingSettings
Auto Trait Implementations
impl RefUnwindSafe for StatusReportingSettings
impl Send for StatusReportingSettings
impl Sync for StatusReportingSettings
impl Unpin for StatusReportingSettings
impl UnwindSafe for StatusReportingSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more