We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0612568 commit b1fbd79Copy full SHA for b1fbd79
src/liballoc/collections/linked_list.rs
@@ -1843,3 +1843,15 @@ unsafe impl<T: Send> Send for IterMut<'_, T> {}
1843
1844
#[stable(feature = "rust1", since = "1.0.0")]
1845
unsafe impl<T: Sync> Sync for IterMut<'_, T> {}
1846
+
1847
+#[unstable(feature = "linked_list_cursors", issue = "58533")]
1848
+unsafe impl<T: Send> Send for Cursor<'_, T> {}
1849
1850
1851
+unsafe impl<T: Sync> Sync for Cursor<'_, T> {}
1852
1853
1854
+unsafe impl<T: Send> Send for CursorMut<'_, T> {}
1855
1856
1857
+unsafe impl<T: Sync> Sync for CursorMut<'_, T> {}
0 commit comments