pub struct ContainerLockGuard { /* private fields */ }Expand description
RAII guard for one or more container locks, acquired together by acquire_container_locks and
released when dropped. Held for its Drop effect, not read from – the same shape
ActiveLock/RefLock already use.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ContainerLockGuard
impl RefUnwindSafe for ContainerLockGuard
impl Send for ContainerLockGuard
impl Sync for ContainerLockGuard
impl Unpin for ContainerLockGuard
impl UnsafeUnpin for ContainerLockGuard
impl UnwindSafe for ContainerLockGuard
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