Struct actix_tools::sentry::sentry_client::protocol::Exception [−]
pub struct Exception {
pub ty: String,
pub value: Option<String>,
pub module: Option<String>,
pub stacktrace: Option<Stacktrace>,
pub raw_stacktrace: Option<Stacktrace>,
pub thread_id: Option<ThreadId>,
pub mechanism: Option<Mechanism>,
}Represents a single exception.
Fields
ty: String
The type of the exception.
value: Option<String>
The optional value of the exception.
module: Option<String>
An optional module for this exception.
stacktrace: Option<Stacktrace>
Optionally the stacktrace.
raw_stacktrace: Option<Stacktrace>
An optional raw stacktrace.
thread_id: Option<ThreadId>
Optional identifier referring to a thread.
mechanism: Option<Mechanism>
The mechanism of the exception including OS specific exception values.
Trait Implementations
impl Serialize for Exception
impl Serialize for Exceptionfn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, Serialize this value into the given Serde serializer. Read more
impl Clone for Exception
impl Clone for Exceptionfn clone(&self) -> Exception
fn clone(&self) -> ExceptionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Default for Exception
impl Default for Exceptionimpl Debug for Exception
impl Debug for Exceptionfn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<'de> Deserialize<'de> for Exception
impl<'de> Deserialize<'de> for Exceptionfn deserialize<__D>(
__deserializer: __D
) -> Result<Exception, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Exception, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<Exception> for Exception
impl PartialEq<Exception> for Exception