2014-07-03 16:32:41 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::ops::{Index, IndexMut};
|
|
|
|
|
2014-07-03 16:32:41 -05:00
|
|
|
struct Foo {
|
2015-01-08 04:54:35 -06:00
|
|
|
x: isize,
|
|
|
|
y: isize,
|
2014-07-03 16:32:41 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 09:40:36 -06:00
|
|
|
impl Index<String> for Foo {
|
2015-01-08 04:54:35 -06:00
|
|
|
type Output = isize;
|
2015-01-03 09:40:36 -06:00
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn index<'a>(&'a self, z: &String) -> &'a isize {
|
2015-02-01 20:53:25 -06:00
|
|
|
if *z == "x" {
|
2014-07-03 16:32:41 -05:00
|
|
|
&self.x
|
|
|
|
} else {
|
|
|
|
&self.y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-03 09:40:36 -06:00
|
|
|
impl IndexMut<String> for Foo {
|
2015-01-08 04:54:35 -06:00
|
|
|
fn index_mut<'a>(&'a mut self, z: &String) -> &'a mut isize {
|
2015-02-01 20:53:25 -06:00
|
|
|
if *z == "x" {
|
2014-07-03 16:32:41 -05:00
|
|
|
&mut self.x
|
|
|
|
} else {
|
|
|
|
&mut self.y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar {
|
2015-01-08 04:54:35 -06:00
|
|
|
x: isize,
|
2014-07-03 16:32:41 -05:00
|
|
|
}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
impl Index<isize> for Bar {
|
|
|
|
type Output = isize;
|
2015-01-03 09:40:36 -06:00
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn index<'a>(&'a self, z: &isize) -> &'a isize {
|
2014-07-03 16:32:41 -05:00
|
|
|
&self.x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut f = Foo {
|
|
|
|
x: 1,
|
|
|
|
y: 2,
|
|
|
|
};
|
|
|
|
let mut s = "hello".to_string();
|
|
|
|
let rs = &mut s;
|
|
|
|
println!("{}", f[s]);
|
|
|
|
//~^ ERROR cannot borrow `s` as immutable because it is also borrowed as mutable
|
|
|
|
f[s] = 10;
|
|
|
|
//~^ ERROR cannot borrow `s` as immutable because it is also borrowed as mutable
|
|
|
|
let s = Bar {
|
|
|
|
x: 1,
|
|
|
|
};
|
|
|
|
s[2] = 20;
|
2015-01-08 08:12:06 -06:00
|
|
|
//~^ ERROR cannot assign to immutable indexed content
|
2014-07-03 16:32:41 -05:00
|
|
|
}
|