pub trait IndexRegion<I, T> {
    // Required methods
    fn region(&self, _: I) -> Region<'_, T>;
    fn region_mut(&mut self, _: I) -> RegionMut<'_, T>;
}Required Methods§
Sourcefn region_mut(&mut self, _: I) -> RegionMut<'_, T>
 
fn region_mut(&mut self, _: I) -> RegionMut<'_, T>
Get a mutable region of Self