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

pub struct MechanismMeta {
    pub errno: Option<CError>,
    pub signal: Option<PosixSignal>,
    pub mach_exception: Option<MachException>,
}

Operating system or runtime meta information to an exception mechanism.

Fields

Optional ISO C standard error code.

Optional POSIX signal number.

Optional mach exception information.

Trait Implementations

impl Debug for MechanismMeta
[src]

Formats the value using the given formatter. Read more

impl Default for MechanismMeta
[src]

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

impl Clone for MechanismMeta
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MechanismMeta
[src]

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

This method tests for !=.

Auto Trait Implementations