[][src]Struct sentry_core::types::protocol::v7::PosixSignal

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

number: i32

The POSIX signal number.

code: Option<i32>

An optional signal code present on Apple systems.

name: Option<String>

Optional name of the errno constant.

code_name: Option<String>

Optional name of the errno constant.

Trait Implementations

impl Clone for PosixSignal[src]

impl Debug for PosixSignal[src]

impl Default for PosixSignal[src]

impl<'de> Deserialize<'de> for PosixSignal[src]

impl Eq for PosixSignal[src]

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

impl From<i32> for PosixSignal[src]

impl Into<i32> for PosixSignal[src]

impl PartialEq<PosixSignal> for PosixSignal[src]

impl Serialize for PosixSignal[src]

impl StructuralEq for PosixSignal[src]

impl StructuralPartialEq for PosixSignal[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,