pub struct IOwnedMutGuard<'a, R: Render>(/* private fields */);
Expand description
A RAII implementation of a scoped guard of an IOwned smart pointer. When this structure is dropped (falls out of scope), the new inspect state will be published.
Trait Implementations§
Source§impl<'a, R: Render> Deref for IOwnedMutGuard<'a, R>
impl<'a, R: Render> Deref for IOwnedMutGuard<'a, R>
Source§impl<'a, R: Render> DerefMut for IOwnedMutGuard<'a, R>
impl<'a, R: Render> DerefMut for IOwnedMutGuard<'a, R>
Auto Trait Implementations§
impl<'a, R> Freeze for IOwnedMutGuard<'a, R>
impl<'a, R> RefUnwindSafe for IOwnedMutGuard<'a, R>
impl<'a, R> Send for IOwnedMutGuard<'a, R>
impl<'a, R> Sync for IOwnedMutGuard<'a, R>
impl<'a, R> Unpin for IOwnedMutGuard<'a, R>
impl<'a, R> !UnwindSafe for IOwnedMutGuard<'a, R>
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