We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd5de2f commit 41a8647Copy full SHA for 41a8647
src/lib.rs
@@ -63,7 +63,7 @@ cfg_if! {
63
use core::clone::Clone;
64
#[doc(hidden)]
65
#[allow(unused_imports)]
66
- use core::marker::Copy;
+ use core::marker::{Copy, Send, Sync};
67
68
69
use core::option::Option;
@@ -85,7 +85,7 @@ cfg_if! {
85
pub use core::clone::Clone;
86
87
88
- pub use core::marker::Copy;
+ pub use core::marker::{Copy, Send, Sync};
89
90
91
pub use core::option::Option;
src/wasi.rs
@@ -1,3 +1,5 @@
1
+use super::{Send, Sync};
2
+
3
pub use ffi::c_void;
4
5
pub type c_char = i8;
0 commit comments