pub trait GetterMut<'a, T: ?Sized>: AffineFoldMut<'a, T>where
Self::View: 'a,{
// Required method
fn view_mut(&self, s: &'a mut T) -> &'a mut Self::View;
}
Expand description
Getter, with mutable references.
pub trait GetterMut<'a, T: ?Sized>: AffineFoldMut<'a, T>where
Self::View: 'a,{
// Required method
fn view_mut(&self, s: &'a mut T) -> &'a mut Self::View;
}
Getter, with mutable references.