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

pub struct Mechanism {
    pub ty: String,
    pub description: Option<String>,
    pub help_link: Option<Url>,
    pub handled: Option<bool>,
    pub data: Map<String, Value>,
    pub meta: MechanismMeta,
    pub other: Map<String, Value>,
}

Represents a single exception.

Fields

The mechanism type identifier.

Human readable detail description.

An optional link to online resources describing this error.

An optional flag indicating whether this exception was handled.

Additional attributes depending on the mechanism type.

Operating system or runtime meta information.

Additional arbitrary fields for forwards compatibility.

Trait Implementations

impl Debug for Mechanism
[src]

Formats the value using the given formatter. Read more

impl Default for Mechanism
[src]

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

impl Clone for Mechanism
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Mechanism
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Mechanism

impl Sync for Mechanism