Struct panik::Panic[][src]

pub struct Panic { /* fields omitted */ }

Describes a panic that has occurred.

Implementations

impl Panic[src]

pub fn is_backtrace_resolved(&self) -> bool[src]

Whether the backtrace for this panic has been resolved.

pub fn message(&self) -> &str[src]

The panic message.

pub fn thread_id(&self) -> ThreadId[src]

The thread that this panic occurred on.

pub fn thread_name(&self) -> &str[src]

A string describing the thread e.g. "ThreadId(12) (worker-thread)".

pub fn backtrace(&self) -> &Backtrace[src]

The backtrace for this panic.

Trait Implementations

impl Clone for Panic[src]

impl Debug for Panic[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.