-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlib.rs
88 lines (71 loc) · 1.46 KB
/
lib.rs
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
extern crate hal_v2;
extern crate hal_v3;
use hal_v2::digital::OutputPin as OutputPinV2;
use hal_v3::digital::OutputPin as OutputPinV3;
struct OldImpl {
state: bool
}
impl OutputPinV2 for OldImpl {
fn set_low(&mut self) {
self.state = false;
}
fn set_high(&mut self) {
self.state = true;
}
}
struct NewImpl {
state: bool
}
impl OutputPinV3 for NewImpl {
type Error = ();
fn set_low(&mut self) -> Result<(), Self::Error> {
self.state = false;
Ok(())
}
fn set_high(&mut self) -> Result<(), Self::Error>{
self.state = true;
Ok(())
}
}
struct OldConsumer<T> {
pin: T,
}
impl <T>OldConsumer<T>
where T: OutputPinV2 {
pub fn new(pin: T) -> OldConsumer<T> {
OldConsumer{ pin }
}
}
struct NewConsumer<T> {
pin: T,
}
impl <T>NewConsumer<T>
where T: OutputPinV3 {
pub fn new(pin: T) -> NewConsumer<T> {
NewConsumer{ pin }
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn new_new() {
let mut i = NewImpl{state: false};
let mut c = NewConsumer{pin: i};
}
#[test]
fn old_old() {
let mut i = OldImpl{state: false};
let mut c = OldConsumer{pin: i};
}
#[test]
fn old_new() {
let mut i = OldImpl{state: false};
let mut c = NewConsumer{pin: i};
}
#[test]
fn new_old() {
let mut i = NewImpl{state: false};
let mut c = OldConsumer{pin: i};
}
}