diff --git a/core/io/completions.rs b/core/io/completions.rs index 9e5ed605c..5d0e76cea 100644 --- a/core/io/completions.rs +++ b/core/io/completions.rs @@ -23,6 +23,9 @@ pub struct Completion { pub(super) inner: Option>, } +unsafe impl Send for Completion {} +unsafe impl Sync for Completion {} + #[derive(Debug, Default)] struct ContextInner { waker: Option,