We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a1e16 commit 6a6c367Copy full SHA for 6a6c367
src/lib.rs
@@ -377,8 +377,8 @@ where
377
_marker: marker::PhantomData<S>,
378
}
379
380
-unsafe impl<T, S> Send for Unordered<T, S> where S: Send + Sentinel {}
381
-unsafe impl<T, S> Sync for Unordered<T, S> where S: Sync + Sentinel {}
+unsafe impl<T: Send, S> Send for Unordered<T, S> where S: Sentinel {}
+unsafe impl<T: Sync, S> Sync for Unordered<T, S> where S: Sentinel {}
382
383
impl<T, S> Unpin for Unordered<T, S> where S: Sentinel {}
384
0 commit comments