Struct actix_tools::sentry::sentry_client::protocol::MachException[]

pub struct MachException {
    pub ty: 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 Serialize for MachException

Serialize this value into the given Serde serializer. Read more

impl Clone for MachException

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for MachException

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

impl Debug for MachException

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for MachException

Deserialize this value from the given Serde deserializer. Read more

impl Eq for MachException

impl PartialEq<MachException> for MachException

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

This method tests for !=.

Auto Trait Implementations