pub trait RefViewMut<'a>: RefView<'a> { type ViewerMut; // Required method fn view_mut(&'a mut self) -> Self::ViewerMut where Self::ViewerMut: 'a; }
Trait to mutably “view” into a struct
See module-level documentation