Struct fluvio_future::sync::MutexGuard
[−]pub struct MutexGuard<'a, T>(_)
where
T: ?Sized;Expand description
A guard that releases the mutex when dropped.
Implementations
impl<'a, T> MutexGuard<'a, T> where
T: ?Sized,
impl<'a, T> MutexGuard<'a, T> where
T: ?Sized,
pub fn source(guard: &MutexGuard<'a, T>) -> &'a Mutex<T>
pub fn source(guard: &MutexGuard<'a, T>) -> &'a Mutex<T>
Returns a reference to the mutex a guard came from.
Examples
use async_lock::{Mutex, MutexGuard};
let mutex = Mutex::new(10i32);
let guard = mutex.lock().await;
dbg!(MutexGuard::source(&guard));Trait Implementations
impl<T> Debug for MutexGuard<'_, T> where
T: Debug + ?Sized,
impl<T> Debug for MutexGuard<'_, T> where
T: Debug + ?Sized,
impl<T> Deref for MutexGuard<'_, T> where
T: ?Sized,
impl<T> Deref for MutexGuard<'_, T> where
T: ?Sized,
impl<T> DerefMut for MutexGuard<'_, T> where
T: ?Sized,
impl<T> DerefMut for MutexGuard<'_, T> where
T: ?Sized,
impl<T> Display for MutexGuard<'_, T> where
T: Display + ?Sized,
impl<T> Display for MutexGuard<'_, T> where
T: Display + ?Sized,
impl<T> Drop for MutexGuard<'_, T> where
T: ?Sized,
impl<T> Drop for MutexGuard<'_, T> where
T: ?Sized,
impl<T> Send for MutexGuard<'_, T> where
T: Send + ?Sized,
impl<T> Sync for MutexGuard<'_, T> where
T: Sync + ?Sized,
Auto Trait Implementations
impl<'a, T> !RefUnwindSafe for MutexGuard<'a, T>
impl<'a, T: ?Sized> Unpin for MutexGuard<'a, T>
impl<'a, T> !UnwindSafe for MutexGuard<'a, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more