1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#[derive(Debug, Eq, PartialEq)]
pub struct Position {
    pub x: u8,
    pub y: u8,
}

impl From<String> for Position {
    fn from(string: String) -> Position {
        // e.g. "2,5"
        let xy: Vec<&str> = string.split(',').collect();
        let x = xy[0].parse().unwrap();
        let y = xy[1].parse().unwrap();

        Position { x, y }
    }
}

impl ToString for Position {
    #[inline]
    fn to_string(&self) -> String {
        format!("{},{}", self.x, self.y)
    }
}

#[test]
fn test_position_from_string() {
    assert_eq!(Position::from("4,12".to_string()), Position { x: 4, y: 12 });
}

#[test]
fn test_position_to_string() {
    assert_eq!(Position { x: 4, y: 12 }.to_string(), "4,12".to_string())
}