pub struct SubxLockGuard { /* private fields */ }Expand description
RAII guard that holds an exclusive file lock on the SubX lock file.
Dropping this guard releases the lock via std::fs::File::unlock.
Trait Implementations§
Source§impl Debug for SubxLockGuard
impl Debug for SubxLockGuard
Auto Trait Implementations§
impl Freeze for SubxLockGuard
impl RefUnwindSafe for SubxLockGuard
impl Send for SubxLockGuard
impl Sync for SubxLockGuard
impl Unpin for SubxLockGuard
impl UnsafeUnpin for SubxLockGuard
impl UnwindSafe for SubxLockGuard
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