pub struct MemoryWriteGuard<'a, T: ?Sized, Impl: ImplDetails> { /* private fields */ }
Expand description
A smart reference wrapper responsible for tracking and managing a flag that indicates whether the memory segment is actively being written to.
Trait Implementations§
Source§impl<'a, T: Debug + ?Sized, Impl: Debug + ImplDetails> Debug for MemoryWriteGuard<'a, T, Impl>
impl<'a, T: Debug + ?Sized, Impl: Debug + ImplDetails> Debug for MemoryWriteGuard<'a, T, Impl>
Source§impl<'a, T: ?Sized, Impl: ImplDetails> Deref for MemoryWriteGuard<'a, T, Impl>
impl<'a, T: ?Sized, Impl: ImplDetails> Deref for MemoryWriteGuard<'a, T, Impl>
Source§impl<'a, T: ?Sized, Impl: ImplDetails> DerefMut for MemoryWriteGuard<'a, T, Impl>
impl<'a, T: ?Sized, Impl: ImplDetails> DerefMut for MemoryWriteGuard<'a, T, Impl>
Auto Trait Implementations§
impl<'a, T, Impl> Freeze for MemoryWriteGuard<'a, T, Impl>
impl<'a, T, Impl> RefUnwindSafe for MemoryWriteGuard<'a, T, Impl>where
<Impl as ReferenceDetails>::RefState<T>: RefUnwindSafe,
<Impl as ReferenceDetails>::WriteGuard<'a>: RefUnwindSafe,
T: RefUnwindSafe + ?Sized,
impl<'a, T, Impl> Send for MemoryWriteGuard<'a, T, Impl>
impl<'a, T, Impl> Sync for MemoryWriteGuard<'a, T, Impl>
impl<'a, T, Impl> Unpin for MemoryWriteGuard<'a, T, Impl>
impl<'a, T, Impl> !UnwindSafe for MemoryWriteGuard<'a, T, Impl>
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