summaryrefslogtreecommitdiff
path: root/src/mutex
diff options
context:
space:
mode:
Diffstat (limited to 'src/mutex')
-rw-r--r--src/mutex/guard.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mutex/guard.rs b/src/mutex/guard.rs
index 35fe1f2..9e8e2e6 100644
--- a/src/mutex/guard.rs
+++ b/src/mutex/guard.rs
@@ -61,7 +61,9 @@ impl<'a, T: ?Sized + 'a, R: RawMutex> AsMut<T> for MutexRef<'a, T, R> {
}
impl<'a, T: ?Sized + 'a, R: RawMutex> MutexRef<'a, T, R> {
- pub unsafe fn new(mutex: &'a Mutex<T, R>) -> Self {
+ /// Creates a reference to the underlying data of a mutex without
+ /// attempting to lock it or take ownership of the key.
+ pub(crate) unsafe fn new(mutex: &'a Mutex<T, R>) -> Self {
Self(mutex, PhantomData)
}
}