pub struct IncidentReportConfig {
    pub destination_package: Option<String>,
    pub destination_class: Option<String>,
    pub privacy_level: Option<i32>,
    pub skip_incidentd: Option<bool>,
    pub skip_dropbox: Option<bool>,
}
Expand description

Android-only. Not for general use. If set, saves the trace into an incident. This field is read by perfetto_cmd, rather than the tracing service. This field must be set when passing the –upload flag to perfetto_cmd.

In this message, either:

  • all of |destination_package|, |destination_class| and |privacy_level| must be set.
  • |skip_incidentd| must be explicitly set to true.

Fields§

§destination_package: Option<String>§destination_class: Option<String>§privacy_level: Option<i32>

Level of filtering in the requested incident. See |Destination| in frameworks/base/core/proto/android/privacy.proto.

§skip_incidentd: Option<bool>

If true, then skips saving the trace to incidentd.

This flag is useful in testing (e.g. Perfetto-statsd integration tests) or when we explicitly don’t want traces to go to incidentd even when they usually would (e.g. configs deployed using statsd but only used for inclusion in bugreports using |bugreport_score|).

The motivation for having this flag, instead of just not setting |incident_report_config|, is prevent accidents where |incident_report_config| is omitted by mistake.

§skip_dropbox: Option<bool>
👎Deprecated

If true, do not write the trace into dropbox (i.e. incident only). Otherwise, write to both dropbox and incident. TODO(lalitm): remove this field as we no longer use Dropbox.

Implementations§

source§

impl IncidentReportConfig

source

pub fn destination_package(&self) -> &str

Returns the value of destination_package, or the default value if destination_package is unset.

source

pub fn destination_class(&self) -> &str

Returns the value of destination_class, or the default value if destination_class is unset.

source

pub fn privacy_level(&self) -> i32

Returns the value of privacy_level, or the default value if privacy_level is unset.

source

pub fn skip_dropbox(&self) -> bool

Returns the value of skip_dropbox, or the default value if skip_dropbox is unset.

source

pub fn skip_incidentd(&self) -> bool

Returns the value of skip_incidentd, or the default value if skip_incidentd is unset.

Trait Implementations§

source§

impl Clone for IncidentReportConfig

source§

fn clone(&self) -> IncidentReportConfig

Returns a copy 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 IncidentReportConfig

source§

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

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

impl Default for IncidentReportConfig

source§

fn default() -> Self

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

impl Message for IncidentReportConfig

source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
source§

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message to a buffer. Read more
source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
source§

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
source§

fn decode<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes an instance of the message from a buffer. Read more
source§

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes a length-delimited instance of the message from the buffer.
source§

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
source§

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
source§

impl PartialEq for IncidentReportConfig

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for IncidentReportConfig

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§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

§

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>,

§

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>,

§

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.