pub trait IndexMut<Idx>: Index<Idx>where
    Idx: ?Sized,{
    // Required method
    fn index_mut(&mut self, index: Idx) -> &mut Self::Output;
}
Available on non-crate feature miri-test-libstd only.
Expand description

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 {index:?}-side of balance immutably");
        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 {index:?}-side of balance mutably");
        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§

source

fn index_mut(&mut self, index: Idx) -> &mut Self::Output

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

Panics

May panic if the index is out of bounds.

Implementors§

§

impl IndexMut<Range<usize>> for UninitSlice

1.3.0 · source§

impl IndexMut<Range<usize>> for String

§

impl IndexMut<RangeFrom<usize>> for UninitSlice

1.3.0 · source§

impl IndexMut<RangeFrom<usize>> for String

§

impl IndexMut<RangeFull> for UninitSlice

1.3.0 · source§

impl IndexMut<RangeFull> for String

1.44.0 · source§

impl IndexMut<RangeFull> for OsString

§

impl IndexMut<RangeInclusive<usize>> for UninitSlice

1.26.0 · source§

impl IndexMut<RangeInclusive<usize>> for String

§

impl IndexMut<RangeTo<usize>> for UninitSlice

1.3.0 · source§

impl IndexMut<RangeTo<usize>> for String

§

impl IndexMut<RangeToInclusive<usize>> for UninitSlice

1.26.0 · source§

impl IndexMut<RangeToInclusive<usize>> for String

§

impl IndexMut<ConnectionHandle> for Slab<ConnectionMeta>

§

impl IndexMut<SpaceId> for [PacketSpace; 3]

source§

impl<'a, G, I> IndexMut<I> for Frozen<'a, G>where G: IndexMut<I>,

§

impl<'a, T> IndexMut<usize> for AllocatedStackMemory<'a, T>

§

impl<'a, T> IndexMut<usize> for HeapPrealloc<'a, T>where T: 'a,

§

impl<'a, T> IndexMut<Range<usize>> for AllocatedStackMemory<'a, T>

§

impl<'s, T, I> IndexMut<I> for SliceVec<'s, T>where I: SliceIndex<[T]>,

§

impl<A, I> IndexMut<I> for ArrayVec<A>where A: Array, I: SliceIndex<[<A as Array>::Item]>,

§

impl<A, I> IndexMut<I> for SmallVec<A>where A: Array, I: SliceIndex<[<A as Array>::Item]>,

§

impl<A, I> IndexMut<I> for TinyVec<A>where A: Array, I: SliceIndex<[<A as Array>::Item]>,

§

impl<AllocU32> IndexMut<BucketPopIndex> for EntropyBucketPopulation<AllocU32>where AllocU32: Allocator<u32>,

const: unstable · source§

impl<I> IndexMut<I> for strwhere I: SliceIndex<str>,

source§

impl<I, T, const LANES: usize> IndexMut<I> for Simd<T, LANES>where T: SimdElement, LaneCount<LANES>: SupportedLaneCount, I: SliceIndex<[T]>,

source§

impl<K, V, Q, S> IndexMut<&Q> for IndexMap<K, V, S>where Q: Hash + Equivalent<K> + ?Sized, K: Hash + Eq, S: BuildHasher,

Access IndexMap values corresponding to a key.

Mutable indexing allows changing / updating values of key-value pairs that are already present.

You can not insert new pairs with index syntax, use .insert().

Examples

use indexmap::IndexMap;

let mut map = IndexMap::new();
for word in "Lorem ipsum dolor sit amet".split_whitespace() {
    map.insert(word.to_lowercase(), word.to_string());
}
let lorem = &mut map["lorem"];
assert_eq!(lorem, "Lorem");
lorem.retain(char::is_lowercase);
assert_eq!(map["lorem"], "orem");
use indexmap::IndexMap;

let mut map = IndexMap::new();
map.insert("foo", 1);
map["bar"] = 1; // panics!
source§

impl<K, V, S> IndexMut<usize> for IndexMap<K, V, S>

Access IndexMap values at indexed positions.

Mutable indexing allows changing / updating indexed values that are already present.

You can not insert new values with index syntax, use .insert().

Examples

use indexmap::IndexMap;

let mut map = IndexMap::new();
for word in "Lorem ipsum dolor sit amet".split_whitespace() {
    map.insert(word.to_lowercase(), word.to_string());
}
let lorem = &mut map[0];
assert_eq!(lorem, "Lorem");
lorem.retain(char::is_lowercase);
assert_eq!(map["lorem"], "orem");
use indexmap::IndexMap;

let mut map = IndexMap::new();
map.insert("foo", 1);
map[10] = 1; // panics!
source§

impl<N, E, Ty> IndexMut<(N, N)> for GraphMap<N, E, Ty>where N: NodeTrait, Ty: EdgeType,

Index GraphMap by node pairs to access edge weights.

source§

impl<N, E, Ty, Ix> IndexMut<EdgeIndex<Ix>> for StableGraph<N, E, Ty, Ix>where Ty: EdgeType, Ix: IndexType,

Index the StableGraph by EdgeIndex to access edge weights.

Panics if the edge doesn’t exist.

source§

impl<N, E, Ty, Ix> IndexMut<EdgeIndex<Ix>> for Graph<N, E, Ty, Ix>where Ty: EdgeType, Ix: IndexType,

Index the Graph by EdgeIndex to access edge weights.

Panics if the edge doesn’t exist.

source§

impl<N, E, Ty, Ix> IndexMut<NodeIndex<Ix>> for StableGraph<N, E, Ty, Ix>where Ty: EdgeType, Ix: IndexType,

Index the StableGraph by NodeIndex to access node weights.

Panics if the node doesn’t exist.

source§

impl<N, E, Ty, Ix> IndexMut<NodeIndex<Ix>> for Graph<N, E, Ty, Ix>where Ty: EdgeType, Ix: IndexType,

Index the Graph by NodeIndex to access node weights.

Panics if the node doesn’t exist.

source§

impl<N, E, Ty, Ix> IndexMut<Ix> for Csr<N, E, Ty, Ix>where Ty: EdgeType, Ix: IndexType,

source§

impl<N, E, Ty, Null, Ix> IndexMut<(NodeIndex<Ix>, NodeIndex<Ix>)> for MatrixGraph<N, E, Ty, Null, Ix>where Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType,

Index the MatrixGraph by NodeIndex pair to access edge weights.

Also available with indexing syntax: &mut graph[e].

Panics if no edge exists between a and b.

source§

impl<N, E, Ty, Null, Ix> IndexMut<NodeIndex<Ix>> for MatrixGraph<N, E, Ty, Null, Ix>where Ty: EdgeType, Null: Nullable<Wrapped = E>, Ix: IndexType,

Index the MatrixGraph by NodeIndex to access node weights.

Panics if the node doesn’t exist.

§

impl<T> IndexMut<usize> for Slab<T>

§

impl<T> IndexMut<usize> for WrapBox<T>

§

impl<T> IndexMut<Range<usize>> for WrapBox<T>

source§

impl<T, A> IndexMut<usize> for VecDeque<T, A>where A: Allocator,

const: unstable · source§

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

source§

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

1.50.0 (const: unstable) · source§

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

§

impl<Ty> IndexMut<usize> for MemoryBlock<Ty>where Ty: Default,

Available on crate feature std only.