[][src]Trait optional_index::OptionalIndexMut

pub trait OptionalIndexMut<I>: OptionalIndex<I> where
    I: ?Sized
{ fn optional_index_mut(&mut self, index: I) -> Option<&mut Self::Output>; }

Optional mutable index.

Required methods

fn optional_index_mut(&mut self, index: I) -> Option<&mut Self::Output>

Loading content...

Implementations on Foreign Types

impl<T, I> OptionalIndexMut<I> for Option<T> where
    T: OptionalIndexMut<I>, 
[src]

Loading content...

Implementors

impl<T, I, '_> OptionalIndexMut<I> for &'_ mut T where
    T: OptionalIndexMut<I>, 
[src]

Loading content...