[][src]Struct async_lock::MutexGuardArc

pub struct MutexGuardArc<T>(_)
where
    T: ?Sized
;

An owned guard that releases the mutex when dropped.

Implementations

impl<T> MutexGuardArc<T> where
    T: ?Sized
[src]

pub fn source(guard: &MutexGuardArc<T>) -> &Arc<Mutex<T>>[src]

Returns a reference to the mutex a guard came from.

Examples

use async_mutex::{Mutex, MutexGuardArc};
use std::sync::Arc;

let mutex = Arc::new(Mutex::new(10i32));
let guard = mutex.lock_arc().await;
dbg!(MutexGuardArc::source(&guard));

Trait Implementations

impl<T> Debug for MutexGuardArc<T> where
    T: Debug + ?Sized
[src]

impl<T> Deref for MutexGuardArc<T> where
    T: ?Sized
[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for MutexGuardArc<T> where
    T: ?Sized
[src]

impl<T> Display for MutexGuardArc<T> where
    T: Display + ?Sized
[src]

impl<T> Drop for MutexGuardArc<T> where
    T: ?Sized
[src]

impl<T> Send for MutexGuardArc<T> where
    T: Send + ?Sized
[src]

impl<T> Sync for MutexGuardArc<T> where
    T: Sync + ?Sized
[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for MutexGuardArc<T>

impl<T: ?Sized> Unpin for MutexGuardArc<T>

impl<T> !UnwindSafe for MutexGuardArc<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.