Enum crash_report::CrashReportReason
source · pub enum CrashReportReason {
Unknown,
GfxstreamRenderThreadHang,
GfxstreamSyncThreadHang,
GfxstreamOtherHang,
}
Expand description
The reason a SimulatedException crash report is being requested.
Variants§
Unknown
A default value for unspecified crash report reason.
GfxstreamRenderThreadHang
A gfxstream render thread hanged.
GfxstreamSyncThreadHang
A gfxstream sync thread hanged.
GfxstreamOtherHang
A gfxstream hang was detected unassociated with a specific type.
Trait Implementations§
source§impl Clone for CrashReportReason
impl Clone for CrashReportReason
source§fn clone(&self) -> CrashReportReason
fn clone(&self) -> CrashReportReason
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 moresource§impl Debug for CrashReportReason
impl Debug for CrashReportReason
source§impl<'de> Deserialize<'de> for CrashReportReason
impl<'de> Deserialize<'de> for CrashReportReason
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for CrashReportReason
impl PartialEq for CrashReportReason
source§fn eq(&self, other: &CrashReportReason) -> bool
fn eq(&self, other: &CrashReportReason) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CrashReportReason
impl Serialize for CrashReportReason
impl Copy for CrashReportReason
impl Eq for CrashReportReason
impl StructuralPartialEq for CrashReportReason
Auto Trait Implementations§
impl RefUnwindSafe for CrashReportReason
impl Send for CrashReportReason
impl Sync for CrashReportReason
impl Unpin for CrashReportReason
impl UnwindSafe for CrashReportReason
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