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/directory.rs | |
| parent | 015f6bc0a403399307374fcf44326eb50096fca6 (diff) | |
| download | mail-10e38b49f57734f2397e395b48faab593268402c.tar.gz | |
make some types Send'able
Diffstat (limited to 'src/directory.rs')
| -rw-r--r-- | src/directory.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/directory.rs b/src/directory.rs index 7b00d70..e5ad11f 100644 --- a/src/directory.rs +++ b/src/directory.rs @@ -30,3 +30,5 @@ impl<'d> ops::Drop for Directory<'d> { }; } } + +unsafe impl<'d> Send for Directory<'d> {} |
