Struct closeable_mutex::CloseableMutex

source ·
pub struct CloseableMutex<T: ?Sized> { /* private fields */ }
Expand description

A mutex that can be closed.

A closed mutex can be accessed freely by the owner, but while closed it cannot be locked by anyone else.

Implementations§

source§

impl<T> CloseableMutex<T>

source

pub fn new(value: T) -> Self

Returns a new instance wrapping the given value.

source§

impl<T: ?Sized> CloseableMutex<T>

source

pub fn close(self: Arc<Self>) -> ClosedGuard<T>

Closes the mutex, returning a guard that can be used to access the underlying value.

When the guard is dropped, the mutex is re-opened.

While the mutex is closed, calls to lock_if_open will return None, and calls to lock will panic.

source

pub fn lock_if_open(&self) -> Option<OpenGuard<'_, T>>

If the lock is open, waits for it to become available and returns a guard that can be used to access the underlying value.

If the lock is closed, returns None.

source

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

Waits for the lock to become available and returns a guard that can be used to access the underlying value.

§Panics

Panics if the lock is closed. To avoid this, use lock_if_open.

Trait Implementations§

Auto Trait Implementations§

§

impl<T> !Freeze for CloseableMutex<T>

§

impl<T> !RefUnwindSafe for CloseableMutex<T>

§

impl<T> Send for CloseableMutex<T>
where T: Send + ?Sized,

§

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

§

impl<T> UnwindSafe for CloseableMutex<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<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.