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
use Input;
pub trait CursorEvent: Sized {
fn from_cursor(cursor: bool, old_event: &Self) -> Option<Self>;
fn cursor<U, F>(&self, f: F) -> Option<U> where F: FnMut(bool) -> U;
fn cursor_args(&self) -> Option<bool> {
self.cursor(|val| val)
}
}
impl CursorEvent for Input {
fn from_cursor(cursor: bool, _old_event: &Self) -> Option<Self> {
Some(Input::Cursor(cursor))
}
fn cursor<U, F>(&self, mut f: F) -> Option<U>
where F: FnMut(bool) -> U
{
match *self {
Input::Cursor(val) => Some(f(val)),
_ => None,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_input_cursor() {
use super::super::Input;
let e = Input::Cursor(false);
let x: Option<Input> = CursorEvent::from_cursor(true, &e);
let y: Option<Input> = x.clone()
.unwrap()
.cursor(|cursor| CursorEvent::from_cursor(cursor, x.as_ref().unwrap()))
.unwrap();
assert_eq!(x, y);
}
}