[][src]Trait try_traits::ops::TryIndexMut

pub trait TryIndexMut<Idx>: TryIndex<Idx> {
    fn try_index_mut(
        &mut self,
        index: Idx
    ) -> Result<&mut Self::Output, Self::Error>; }

The try trait for IndexMut.

Required methods

fn try_index_mut(
    &mut self,
    index: Idx
) -> Result<&mut Self::Output, Self::Error>

The fallible equivalent of Index::index.

Loading content...

Implementors

impl<T: IndexMut<Idx>, Idx> TryIndexMut<Idx> for T[src]

Loading content...