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

pub struct CError {
    pub number: i32,
    pub name: Option<String>,
}

POSIX signal with optional extended data.

Fields

The error code as specified by ISO C99, POSIX.1-2001 or POSIX.1-2008.

Optional name of the errno constant.

Trait Implementations

impl Debug for CError
[src]

Formats the value using the given formatter. Read more

impl Default for CError
[src]

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

impl Clone for CError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl From<i32> for CError
[src]

Performs the conversion.

impl Into<i32> for CError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for CError

impl Sync for CError