We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fa2fea3 + 3bfbf8c commit b23fbbaCopy full SHA for b23fbba
packages/std/src/errors/backtrace.rs
@@ -5,7 +5,7 @@ use crate::prelude::*;
5
/// This wraps an actual backtrace to achieve two things:
6
/// - being able to fill this with a stub implementation in `no_std` environments
7
/// - being able to use this in conjunction with [`thiserror::Error`]
8
-pub struct BT(Box<dyn Printable>);
+pub struct BT(Box<dyn Printable + Sync + Send>);
9
10
impl BT {
11
#[track_caller]
0 commit comments