pub struct PanicError { /* private fields */ }Expand description
Wrapper for panic payloads, converting them to an Error type.
Panic payloads are intentionally lossy - we extract the message if it’s a string type, otherwise provide a generic indicator. This is the right behavior for async boundaries and cross-task error propagation.
Implementations§
Trait Implementations§
Source§impl Clone for PanicError
impl Clone for PanicError
Source§fn clone(&self) -> PanicError
fn clone(&self) -> PanicError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PanicError
impl Debug for PanicError
Source§impl Display for PanicError
impl Display for PanicError
Source§impl Error for PanicError
impl Error for PanicError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for PanicError
impl RefUnwindSafe for PanicError
impl Send for PanicError
impl Sync for PanicError
impl Unpin for PanicError
impl UnwindSafe for PanicError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more