pub struct CrashReportAttributes {
pub product_type: String,
pub pipe_name: Option<String>,
pub report_uuid: Option<String>,
pub product_name: Option<String>,
pub product_version: Option<String>,
}
Expand description
Attributes about a process that are required to set up annotations for crash reports.
Fields§
§product_type: String
§pipe_name: Option<String>
§report_uuid: Option<String>
§product_name: Option<String>
§product_version: Option<String>
Trait Implementations§
§impl Clone for CrashReportAttributes
impl Clone for CrashReportAttributes
§fn clone(&self) -> CrashReportAttributes
fn clone(&self) -> CrashReportAttributes
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for CrashReportAttributes
impl Debug for CrashReportAttributes
§impl<'de> Deserialize<'de> for CrashReportAttributes
impl<'de> Deserialize<'de> for CrashReportAttributes
§fn deserialize<__D>(
__deserializer: __D
) -> Result<CrashReportAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<CrashReportAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Serialize for CrashReportAttributes
impl Serialize for CrashReportAttributes
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for CrashReportAttributes
impl Send for CrashReportAttributes
impl Sync for CrashReportAttributes
impl Unpin for CrashReportAttributes
impl UnwindSafe for CrashReportAttributes
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
Mutably borrows from an owned value. Read more