From 8b222278027792d80008fd88f8ac1aa1e968eb1e Mon Sep 17 00:00:00 2001 From: Nathan A Sculli Date: Sun, 24 Nov 2019 03:30:32 -0800 Subject: [PATCH] Add Send impl as a workaround for #18 --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 2cab8aa..1acddac 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -404,6 +404,7 @@ enum ContextResult { } unsafe impl Sync for ContextResult {} +unsafe impl Send for ContextResult {} trait AssertSend: Send {} trait AssertSync: Sync {}