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

pub struct PosixSignal {
    pub number: i32,
    pub code: Option<i32>,
    pub name: Option<String>,
    pub code_name: Option<String>,
}

POSIX signal with optional extended data.

Fields

The POSIX signal number.

An optional signal code present on Apple systems.

Optional name of the errno constant.

Optional name of the errno constant.

Trait Implementations

impl Debug for PosixSignal
[src]

Formats the value using the given formatter. Read more

impl Default for PosixSignal
[src]

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

impl Clone for PosixSignal
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PosixSignal
[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 PosixSignal
[src]

impl From<i32> for PosixSignal
[src]

Performs the conversion.

impl From<(i32, i32)> for PosixSignal
[src]

Performs the conversion.

impl Into<i32> for PosixSignal
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for PosixSignal

impl Sync for PosixSignal