aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.rs
diff options
context:
space:
mode:
authorDirk Van Haerenborgh <vhdirk@gmail.com>2018-04-12 07:12:52 +0200
committerDirk Van Haerenborgh <vhdirk@gmail.com>2018-04-12 07:12:52 +0200
commit10e38b49f57734f2397e395b48faab593268402c (patch)
tree7f3c7d2cb082a008cbefbfbd7b2ac4a331274205 /src/thread.rs
parent015f6bc0a403399307374fcf44326eb50096fca6 (diff)
downloadmail-10e38b49f57734f2397e395b48faab593268402c.tar.gz
make some types Send'able
Diffstat (limited to 'src/thread.rs')
-rw-r--r--src/thread.rs2
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> {}