pub struct SafeLockGuard<'x>(/* private fields */);
Expand description
A handle to the acquired lock. Drop this to release the lock.
Auto Trait Implementations§
impl<'x> Freeze for SafeLockGuard<'x>
impl<'x> RefUnwindSafe for SafeLockGuard<'x>
impl<'x> !Send for SafeLockGuard<'x>
impl<'x> Sync for SafeLockGuard<'x>
impl<'x> Unpin for SafeLockGuard<'x>
impl<'x> UnwindSafe for SafeLockGuard<'x>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more