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.
1 parent a35a3cc commit 8b786a2Copy full SHA for 8b786a2
ext/node_resolver/sync.rs
@@ -15,4 +15,9 @@ mod inner {
15
#[cfg(not(feature = "sync"))]
16
mod inner {
17
pub use std::rc::Rc as MaybeArc;
18
+
19
+ pub trait MaybeSync {}
20
+ impl<T> MaybeSync for T where T: ?Sized {}
21
+ pub trait MaybeSend {}
22
+ impl<T> MaybeSend for T where T: ?Sized {}
23
}
0 commit comments