Struct actix_tools::sentry::sentry_client::protocol::Thread [−]
pub struct Thread {
pub id: Option<ThreadId>,
pub name: Option<String>,
pub stacktrace: Option<Stacktrace>,
pub raw_stacktrace: Option<Stacktrace>,
pub crashed: bool,
pub current: bool,
}Represents a single thread.
Fields
id: Option<ThreadId>
The optional ID of the thread (usually an integer)
name: Option<String>
The optional name of the thread.
stacktrace: Option<Stacktrace>
If the thread suspended or crashed a stacktrace can be attached here.
raw_stacktrace: Option<Stacktrace>
Optional raw stacktrace.
crashed: bool
True if this is the crashed thread.
current: bool
Indicates that the thread was not suspended when the event was created.
Trait Implementations
impl Serialize for Thread
impl Serialize for Threadfn 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 Thread
impl Clone for Threadfn clone(&self) -> Thread
fn clone(&self) -> ThreadReturns 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 Thread
impl Default for Threadimpl Debug for Thread
impl Debug for Threadfn 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 Thread where
Thread: Default,
impl<'de> Deserialize<'de> for Thread where
Thread: Default, fn deserialize<__D>(
__deserializer: __D
) -> Result<Thread, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Thread, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<Thread> for Thread
impl PartialEq<Thread> for Thread