Struct Mutex

Source
pub struct Mutex<T: ?Sized> { /* private fields */ }
Expand description

A mutual exclusion primitive for protecting shared data.

This type is an async version of std::sync::Mutex.

§Examples

use async_std::sync::{Arc, Mutex};
use async_std::task;

let m = Arc::new(Mutex::new(0));
let mut tasks = vec![];

for _ in 0..10 {
    let m = m.clone();
    tasks.push(task::spawn(async move {
        *m.lock().await += 1;
    }));
}

for t in tasks {
    t.await.unwrap();
}
assert_eq!(*m.lock().await, 10);

Implementations§

Source§

impl<T> Mutex<T>

Source

pub fn new(t: T) -> Mutex<T>

Creates a new mutex.

§Examples
use async_std::sync::Mutex;

let mutex = Mutex::new(0);
Source§

impl<T: ?Sized> Mutex<T>

Source

pub async fn lock(&self) -> MutexGuard<'_, T>

Acquires the lock.

Returns a guard that releases the lock when dropped.

§Examples
use async_std::sync::{Arc, Mutex};
use async_std::task;

let m1 = Arc::new(Mutex::new(10));
let m2 = m1.clone();

task::spawn(async move {
    *m1.lock().await = 20;
})
.await.unwrap();

assert_eq!(*m2.lock().await, 20);
Source

pub fn try_lock(&self) -> Option<MutexGuard<'_, T>>

Attempts to acquire the lock.

If the lock could not be acquired at this time, then None is returned. Otherwise, a guard is returned that releases the lock when dropped.

§Examples
use async_std::sync::{Arc, Mutex};
use async_std::task;

let m1 = Arc::new(Mutex::new(10));
let m2 = m1.clone();

task::spawn(async move {
    if let Some(mut guard) = m1.try_lock() {
        *guard = 20;
    } else {
        println!("try_lock failed");
    }
})
.await.unwrap();

assert_eq!(*m2.lock().await, 20);
Source

pub fn into_inner(self) -> T
where T: Sized,

Consumes the mutex, returning the underlying data.

§Examples
use async_std::sync::Mutex;

let mutex = Mutex::new(10);
assert_eq!(mutex.into_inner(), 10);
Source

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 no locks exist.

§Examples
use async_std::sync::Mutex;

let mut mutex = Mutex::new(0);
*mutex.get_mut() = 10;
assert_eq!(*mutex.lock().await, 10);

Trait Implementations§

Source§

impl<T: ?Sized + Debug> Debug for Mutex<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: ?Sized + Default> Default for Mutex<T>

Source§

fn default() -> Mutex<T>

Returns the “default value” for a type. Read more
Source§

impl<T> From<T> for Mutex<T>

Source§

fn from(val: T) -> Mutex<T>

Converts to this type from the input type.
Source§

impl<T: ?Sized + Send> Send for Mutex<T>

Source§

impl<T: ?Sized + Send> Sync for Mutex<T>

Auto Trait Implementations§

§

impl<T> !Freeze for Mutex<T>

§

impl<T> !RefUnwindSafe for Mutex<T>

§

impl<T> Unpin for Mutex<T>
where T: Unpin + ?Sized,

§

impl<T> UnwindSafe for Mutex<T>
where T: UnwindSafe + ?Sized,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.