pub struct ElementRefMut<'borrow, T> { /* private fields */ }
Expand description
A mutably borrowed element.
This object is guaranteed to not own any state (all state is borrowed).
Trait Implementations§
Source§impl<'borrow, T> AsMut<T> for ElementRefMut<'borrow, T>
impl<'borrow, T> AsMut<T> for ElementRefMut<'borrow, T>
Source§impl<'borrow, T> AsRef<T> for ElementRefMut<'borrow, T>
impl<'borrow, T> AsRef<T> for ElementRefMut<'borrow, T>
Source§impl<T> Debug for ElementRefMut<'_, T>where
T: Debug,
impl<T> Debug for ElementRefMut<'_, T>where
T: Debug,
Source§impl<'borrow, T> Deref for ElementRefMut<'borrow, T>
impl<'borrow, T> Deref for ElementRefMut<'borrow, T>
Auto Trait Implementations§
impl<'borrow, T> Freeze for ElementRefMut<'borrow, T>
impl<'borrow, T> !RefUnwindSafe for ElementRefMut<'borrow, T>
impl<'borrow, T> !Send for ElementRefMut<'borrow, T>
impl<'borrow, T> !Sync for ElementRefMut<'borrow, T>
impl<'borrow, T> Unpin for ElementRefMut<'borrow, T>
impl<'borrow, T> !UnwindSafe for ElementRefMut<'borrow, T>
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