Struct sentry_types::protocol::v7::MachException[][src]

pub struct MachException {
    pub exception: i32,
    pub code: u64,
    pub subcode: u64,
    pub name: Option<String>,
}

Mach exception information.

Fields

The mach exception type.

The mach exception code.

The mach exception subcode.

Optional name of the mach exception.

Trait Implementations

impl Debug for MachException
[src]

Formats the value using the given formatter. Read more

impl Default for MachException
[src]

Returns the "default value" for a type. Read more

impl Clone for MachException
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MachException
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for MachException
[src]

Auto Trait Implementations