Struct actix_tools::sentry::sentry_client::protocol::MechanismMeta[]

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 Serialize for MechanismMeta

Serialize this value into the given Serde serializer. Read more

impl Clone for MechanismMeta

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for MechanismMeta

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

impl Debug for MechanismMeta

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for MechanismMeta

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<MechanismMeta> for MechanismMeta

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

This method tests for !=.

Auto Trait Implementations