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.
crate::marker
1 parent 2bc5d44 commit 9dc7f13Copy full SHA for 9dc7f13
library/std/src/sys_common/remutex.rs
@@ -2,7 +2,6 @@
2
mod tests;
3
4
use crate::fmt;
5
-use crate::marker;
6
use crate::ops::Deref;
7
use crate::panic::{RefUnwindSafe, UnwindSafe};
8
use crate::sys::mutex as sys;
@@ -40,7 +39,7 @@ pub struct ReentrantMutexGuard<'a, T: 'a> {
40
39
lock: &'a ReentrantMutex<T>,
41
}
42
43
-impl<T> !marker::Send for ReentrantMutexGuard<'_, T> {}
+impl<T> !Send for ReentrantMutexGuard<'_, T> {}
44
45
impl<T> ReentrantMutex<T> {
46
/// Creates a new reentrant mutex in an unlocked state.
0 commit comments