Struct sentry::protocol::Exception [] [src]

pub struct Exception {
    pub ty: String,
    pub value: Option<String>,
    pub module: Option<String>,
    pub stacktrace: Option<Stacktrace>,
    pub raw_stacktrace: Option<Stacktrace>,
}

Represents a single exception

Fields

The type of the exception

The optional value of the exception

An optional module for this exception.

Optionally the stacktrace.

An optional raw stacktrace.

Trait Implementations

impl PartialEq<Exception> for Exception
[src]

[src]

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

[src]

This method tests for !=.

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for Exception
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for Exception
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for Exception
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for Exception
[src]

[src]

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

Auto Trait Implementations

impl Send for Exception

impl Sync for Exception