Trait nom::lib::std::ops::IndexMut1.0.0[][src]

#[lang = "index_mut"]pub trait IndexMut<Idx>: Index<Idx> where
    Idx: ?Sized
{ pub fn index_mut(&mut self, index: Idx) -> &mut Self::Output; }

Used for indexing operations (container[index]) in mutable contexts.

container[index] is actually syntactic sugar for *container.index_mut(index), but only when used as a mutable value. If an immutable value is requested, the Index trait is used instead. This allows nice things such as v[index] = value.

Examples

A very simple implementation of a Balance struct that has two sides, where each can be indexed mutably and immutably.

use std::ops::{Index, IndexMut};

#[derive(Debug)]
enum Side {
    Left,
    Right,
}

#[derive(Debug, PartialEq)]
enum Weight {
    Kilogram(f32),
    Pound(f32),
}

struct Balance {
    pub left: Weight,
    pub right: Weight,
}

impl Index<Side> for Balance {
    type Output = Weight;

    fn index(&self, index: Side) -> &Self::Output {
        println!("Accessing {:?}-side of balance immutably", index);
        match index {
            Side::Left => &self.left,
            Side::Right => &self.right,
        }
    }
}

impl IndexMut<Side> for Balance {
    fn index_mut(&mut self, index: Side) -> &mut Self::Output {
        println!("Accessing {:?}-side of balance mutably", index);
        match index {
            Side::Left => &mut self.left,
            Side::Right => &mut self.right,
        }
    }
}

let mut balance = Balance {
    right: Weight::Kilogram(2.5),
    left: Weight::Pound(1.5),
};

// In this case, `balance[Side::Right]` is sugar for
// `*balance.index(Side::Right)`, since we are only *reading*
// `balance[Side::Right]`, not writing it.
assert_eq!(balance[Side::Right], Weight::Kilogram(2.5));

// However, in this case `balance[Side::Left]` is sugar for
// `*balance.index_mut(Side::Left)`, since we are writing
// `balance[Side::Left]`.
balance[Side::Left] = Weight::Kilogram(3.0);

Required methods

pub fn index_mut(&mut self, index: Idx) -> &mut Self::Output[src]

Performs the mutable indexing (container[index]) operation.

Loading content...

Implementations on Foreign Types

impl IndexMut<RangeFull> for OsString[src]

impl<I> IndexMut<I> for str where
    I: SliceIndex<str>, 
[src]

impl<T, I> IndexMut<I> for [T] where
    I: SliceIndex<[T]>, 
[src]

impl<T, I, const N: usize> IndexMut<I> for [T; N] where
    [T]: IndexMut<I>, 
[src]

impl<O, T> IndexMut<RangeFrom<usize>> for BitSlice<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, T, Idx> IndexMut<Idx> for BitVec<O, T> where
    O: BitOrder,
    T: BitStore,
    BitSlice<O, T>: IndexMut<Idx>, 
[src]

impl<O, T> IndexMut<RangeTo<usize>> for BitSlice<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, T> IndexMut<RangeInclusive<usize>> for BitSlice<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, T> IndexMut<RangeToInclusive<usize>> for BitSlice<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, T> IndexMut<Range<usize>> for BitSlice<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, T> IndexMut<RangeFull> for BitSlice<O, T> where
    O: BitOrder,
    T: BitStore
[src]

impl<O, T, Idx> IndexMut<Idx> for BitBox<O, T> where
    O: BitOrder,
    T: BitStore,
    BitSlice<O, T>: IndexMut<Idx>, 
[src]

impl<O, V, Idx> IndexMut<Idx> for BitArray<O, V> where
    O: BitOrder,
    V: BitView,
    BitSlice<O, <V as BitView>::Store>: IndexMut<Idx>, 
[src]

Loading content...

Implementors

impl IndexMut<Range<usize>> for String1.3.0[src]

impl IndexMut<RangeFrom<usize>> for String1.3.0[src]

impl IndexMut<RangeFull> for String1.3.0[src]

impl IndexMut<RangeInclusive<usize>> for String1.26.0[src]

impl IndexMut<RangeTo<usize>> for String1.3.0[src]

impl IndexMut<RangeToInclusive<usize>> for String1.26.0[src]

impl<A> IndexMut<usize> for VecDeque<A>[src]

impl<T, I, A> IndexMut<I> for Vec<T, A> where
    I: SliceIndex<[T]>,
    A: Allocator
[src]

Loading content...