Struct feature_extension_for_async_std::sync::Mutex
source · pub struct Mutex<T>where
T: ?Sized,{ /* private fields */ }Expand description
An async mutex.
The locking mechanism uses eventual fairness to ensure locking will be fair on average without sacrificing performance. This is done by forcing a fair lock whenever a lock operation is starved for longer than 0.5 milliseconds.
§Examples
use async_lock::Mutex;
let m = Mutex::new(1);
let mut guard = m.lock().await;
*guard = 2;
assert!(m.try_lock().is_none());
drop(guard);
assert_eq!(*m.try_lock().unwrap(), 2);Implementations§
source§impl<T> Mutex<T>
impl<T> Mutex<T>
source§impl<T> Mutex<T>where
T: ?Sized,
impl<T> Mutex<T>where
T: ?Sized,
sourcepub fn lock(&self) -> Lock<'_, T> ⓘ
pub fn lock(&self) -> Lock<'_, T> ⓘ
Acquires the mutex.
Returns a guard that releases the mutex when dropped.
§Examples
use async_lock::Mutex;
let mutex = Mutex::new(10);
let guard = mutex.lock().await;
assert_eq!(*guard, 10);sourcepub fn try_lock(&self) -> Option<MutexGuard<'_, T>>
pub fn try_lock(&self) -> Option<MutexGuard<'_, T>>
sourcepub fn get_mut(&mut self) -> &mut T
pub fn get_mut(&mut self) -> &mut T
Returns a mutable reference to the underlying data.
Since this call borrows the mutex mutably, no actual locking takes place – the mutable borrow statically guarantees the mutex is not already acquired.
§Examples
use async_lock::Mutex;
let mut mutex = Mutex::new(0);
*mutex.get_mut() = 10;
assert_eq!(*mutex.lock().await, 10);source§impl<T> Mutex<T>where
T: ?Sized,
impl<T> Mutex<T>where
T: ?Sized,
sourcepub fn lock_arc(self: &Arc<Mutex<T>>) -> LockArc<T> ⓘ
pub fn lock_arc(self: &Arc<Mutex<T>>) -> LockArc<T> ⓘ
Acquires the mutex and clones a reference to it.
Returns an owned guard that releases the mutex when dropped.
§Examples
use async_lock::Mutex;
use std::sync::Arc;
let mutex = Arc::new(Mutex::new(10));
let guard = mutex.lock_arc().await;
assert_eq!(*guard, 10);sourcepub fn try_lock_arc(self: &Arc<Mutex<T>>) -> Option<MutexGuardArc<T>>
pub fn try_lock_arc(self: &Arc<Mutex<T>>) -> Option<MutexGuardArc<T>>
Attempts to acquire the mutex and clone a reference to it.
If the mutex could not be acquired at this time, then None is returned. Otherwise, an
owned guard is returned that releases the mutex when dropped.
§Examples
use async_lock::Mutex;
use std::sync::Arc;
let mutex = Arc::new(Mutex::new(10));
if let Some(guard) = mutex.try_lock() {
assert_eq!(*guard, 10);
}Trait Implementations§
impl<T> Send for Mutex<T>
impl<T> Sync for Mutex<T>
Auto Trait Implementations§
impl<T> !Freeze for Mutex<T>
impl<T> !RefUnwindSafe for Mutex<T>
impl<T: ?Sized> Unpin for Mutex<T>where
T: Unpin,
impl<T: ?Sized> UnwindSafe for Mutex<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> FromFilelike for Twhere
T: From<OwnedHandle>,
impl<T> FromFilelike for Twhere
T: From<OwnedHandle>,
source§fn from_filelike(owned: OwnedHandle) -> T
fn from_filelike(owned: OwnedHandle) -> T
Self from the given filelike object. Read moresource§fn from_into_filelike<Owned>(owned: Owned) -> Twhere
Owned: IntoFilelike,
fn from_into_filelike<Owned>(owned: Owned) -> Twhere
Owned: IntoFilelike,
Self from the given filelike object
converted from into_owned. Read moresource§impl<T> FromHandle for Twhere
T: From<OwnedHandle>,
impl<T> FromHandle for Twhere
T: From<OwnedHandle>,
source§fn from_handle(owned_handle: OwnedHandle) -> T
fn from_handle(owned_handle: OwnedHandle) -> T
FromHandle::from_handle is replaced by From<OwnedHandle>::fromSelf from the given handle. Read moresource§fn from_into_handle<Owned>(into_owned: Owned) -> Self
fn from_into_handle<Owned>(into_owned: Owned) -> Self
source§impl<T> FromSocket for Twhere
T: From<OwnedSocket>,
impl<T> FromSocket for Twhere
T: From<OwnedSocket>,
source§fn from_socket(owned_socket: OwnedSocket) -> T
fn from_socket(owned_socket: OwnedSocket) -> T
FromSocket::from_socket is replaced by From<OwnedSocket>::fromSelf from the given socket.source§fn from_into_socket<Owned>(into_owned: Owned) -> Self
fn from_into_socket<Owned>(into_owned: Owned) -> Self
Self from the given socket converted
from into_owned.source§impl<T> FromSocketlike for Twhere
T: From<OwnedSocket>,
impl<T> FromSocketlike for Twhere
T: From<OwnedSocket>,
source§fn from_socketlike(owned: OwnedSocket) -> T
fn from_socketlike(owned: OwnedSocket) -> T
Self from the given socketlike object.source§fn from_into_socketlike<Owned>(owned: Owned) -> Twhere
Owned: IntoSocketlike,
fn from_into_socketlike<Owned>(owned: Owned) -> Twhere
Owned: IntoSocketlike,
Self from the given socketlike object
converted from into_owned.