pub enum LazyViewMut<'a, T: LazyModifiable> {
Strict(&'a mut T),
Lazy(&'a T, &'a mut T::Diff),
}Variants§
Auto Trait Implementations§
impl<'a, T> Freeze for LazyViewMut<'a, T>
impl<'a, T> RefUnwindSafe for LazyViewMut<'a, T>
impl<'a, T> Send for LazyViewMut<'a, T>
impl<'a, T> Sync for LazyViewMut<'a, T>
impl<'a, T> Unpin for LazyViewMut<'a, T>
impl<'a, T> !UnwindSafe for LazyViewMut<'a, 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