Struct grafix_toolbox::uses::Async::sync::Mutex [−]
pub struct Mutex<T> where
T: ?Sized, { /* fields omitted */ }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
impl<T> Mutex<T>
impl<T> Mutex<T>pub fn into_inner(self) -> T
pub fn into_inner(self) -> TConsumes the mutex, returning the underlying data.
Examples
use async_lock::Mutex; let mutex = Mutex::new(10); assert_eq!(mutex.into_inner(), 10);
pub async fn lock(&'_ self) -> MutexGuard<'_, T>
pub async fn lock(&'_ self) -> MutexGuard<'_, 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);
pub fn try_lock(&self) -> Option<MutexGuard<'_, T>>
pub fn try_lock(&self) -> Option<MutexGuard<'_, 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);
pub async fn lock_arc(self: &'_ Arc<Mutex<T>>) -> MutexGuardArc<T>
pub async fn lock_arc(self: &'_ Arc<Mutex<T>>) -> MutexGuardArc<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);
pub 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
Auto Trait Implementations
impl<T> !RefUnwindSafe for Mutex<T>impl<T: ?Sized> UnwindSafe for Mutex<T> where
T: UnwindSafe, Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = TShould always be Self
The inverse inclusion map: attempts to construct self from the equivalent element of its
superset. Read more
pub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> boolChecks if self is actually part of its subset T (and can be converted to it).
pub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SSUse with care! Same as self.to_subset but without any property checks. Always succeeds.
pub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SPThe inclusion map: converts self to the equivalent element of its superset.
pub fn vzip(self) -> V