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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
pub use srcpos::*;

#[cfg(feature = "srcpos_get_derive")]
pub use srcpos_get_derive::*;

/// Calculate Loc

pub trait GetLoc {
    /// Calculate Loc

    fn loc(&self) -> Loc;
}

/// Calculate Pos

pub trait GetPos {
    /// Calculate Pos

    fn pos(&self) -> Pos;
}

impl<T: GetLoc> GetLoc for &T {
    fn loc(&self) -> Loc {
        (**self).loc()
    }
}

impl<T: GetLoc> GetLoc for &mut T {
    fn loc(&self) -> Loc {
        (**self).loc()
    }
}

impl<T: GetPos> GetPos for &T {
    fn pos(&self) -> Pos {
        (**self).pos()
    }
}

impl<T: GetPos> GetPos for &mut T {
    fn pos(&self) -> Pos {
        (**self).pos()
    }
}

impl GetLoc for Loc {
    fn loc(&self) -> Loc {
        *self
    }
}

impl GetPos for Pos {
    fn pos(&self) -> Pos {
        *self
    }
}

impl GetPos for Loc {
    fn pos(&self) -> Pos {
        self.from
    }
}