You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support capturing backtraces inside of Arc from a From impl, which makes it possible for errors having backtraces to be clonable (#102)
use std::backtrace::Backtrace;use std::sync::Arc;use thiserror::Error;#[derive(Error,Debug,Clone)]#[error("...")]pubstructClonableErrorWithBacktrace{#[from]source:Inner,#[backtrace]backtrace:Arc<Backtrace>,}