2013-01-17 02:45:05 +00:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2014-12-22 17:04:23 +00:00
|
|
|
use std::ops::Add;
|
|
|
|
|
2013-01-17 02:45:05 +00:00
|
|
|
trait Positioned<S> {
|
2013-02-23 00:08:16 +00:00
|
|
|
fn SetX(&mut self, S);
|
2013-01-17 02:45:05 +00:00
|
|
|
fn X(&self) -> S;
|
|
|
|
}
|
|
|
|
|
2014-12-31 20:45:13 +00:00
|
|
|
trait Movable<S: Add<Output=S>>: Positioned<S> {
|
2013-07-23 20:46:51 +00:00
|
|
|
fn translate(&mut self, dx: S) {
|
|
|
|
let x = self.X() + dx;
|
|
|
|
self.SetX(x);
|
2013-01-17 02:45:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
struct Point { x: isize, y: isize }
|
2013-01-17 02:45:05 +00:00
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
impl Positioned<isize> for Point {
|
|
|
|
fn SetX(&mut self, x: isize) {
|
2013-01-17 02:45:05 +00:00
|
|
|
self.x = x;
|
|
|
|
}
|
2015-03-26 00:06:52 +00:00
|
|
|
fn X(&self) -> isize {
|
2013-01-17 02:45:05 +00:00
|
|
|
self.x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
impl Movable<isize> for Point {}
|
2013-01-17 02:45:05 +00:00
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2013-07-23 20:46:51 +00:00
|
|
|
let mut p = Point{ x: 1, y: 2};
|
2013-01-17 02:45:05 +00:00
|
|
|
p.translate(3);
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(p.X(), 4);
|
2013-01-17 02:45:05 +00:00
|
|
|
}
|