pub trait AsViewMut<'a> { type ViewType: 'a; // Required method fn as_view(&'a mut self) -> Self::ViewType; }
Trait that defines an mutable view that references itself
Returned View type