[]Struct sentry::internals::protocol::v7::CError

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

POSIX signal with optional extended data.

Fields

number: i32

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

name: Option<String>

Optional name of the errno constant.

Trait Implementations

impl Clone for CError

impl Debug for CError

impl Default for CError

impl<'de> Deserialize<'de> for CError

impl Eq for CError

impl From<i32> for CError

impl Into<i32> for CError

impl PartialEq<CError> for CError

impl Serialize for CError

impl StructuralEq for CError

impl StructuralPartialEq for CError

Auto Trait Implementations

impl RefUnwindSafe for CError

impl Send for CError

impl Sync for CError

impl Unpin for CError

impl UnwindSafe for CError

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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>, 

impl<T> WithSubscriber for T[src]