diff options
| author | Dirk Van Haerenborgh <vhdirk@gmail.com> | 2018-04-12 07:12:52 +0200 |
|---|---|---|
| committer | Dirk Van Haerenborgh <vhdirk@gmail.com> | 2018-04-12 07:12:52 +0200 |
| commit | 10e38b49f57734f2397e395b48faab593268402c (patch) | |
| tree | 7f3c7d2cb082a008cbefbfbd7b2ac4a331274205 /src/thread.rs | |
| parent | 015f6bc0a403399307374fcf44326eb50096fca6 (diff) | |
| download | mail-10e38b49f57734f2397e395b48faab593268402c.tar.gz | |
make some types Send'able
Diffstat (limited to 'src/thread.rs')
| -rw-r--r-- | src/thread.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/thread.rs b/src/thread.rs index 9148c44..37f7cb7 100644 --- a/src/thread.rs +++ b/src/thread.rs @@ -114,3 +114,5 @@ impl<'q, 'd> ops::Drop for Thread<'q, 'd> { }; } } + +unsafe impl<'q, 'd> Send for Thread<'q, 'd> {} |
