pub trait OptionalIndexMut<I>: OptionalIndex<I>where
I: ?Sized,{
// Required method
fn optional_index_mut(&mut self, index: I) -> Option<&mut Self::Output>;
}
Expand description
Optional mutable index.
pub trait OptionalIndexMut<I>: OptionalIndex<I>where
I: ?Sized,{
// Required method
fn optional_index_mut(&mut self, index: I) -> Option<&mut Self::Output>;
}
Optional mutable index.