Objects that implement the mutable subscript operator.
trait IndexMut<Idx> : Index<Idx>
where Idx: ?Sized,
{
/* Required methods */
fn index_mut(&mut self, index: Idx) -> &mut <Self as Index<Idx>>::Output
}| Receiver | Name | Description |
|---|---|---|
&mut self | index_mut | The method that will be called by the operator. |