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 ResizeEvent: Sized {
fn from_width_height(w: u32, h: u32, old_event: &Self) -> Option<Self>;
fn resize<U, F>(&self, f: F) -> Option<U> where F: FnMut(u32, u32) -> U;
fn resize_args(&self) -> Option<[u32; 2]> {
self.resize(|x, y| [x, y])
}
}
impl ResizeEvent for Input {
fn from_width_height(w: u32, h: u32, _old_event: &Self) -> Option<Self> {
Some(Input::Resize(w, h))
}
fn resize<U, F>(&self, mut f: F) -> Option<U>
where F: FnMut(u32, u32) -> U
{
match *self {
Input::Resize(w, h) => Some(f(w, h)),
_ => None,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_input_resize() {
use super::super::Input;
let e = Input::Resize(0, 0);
let x: Option<Input> = ResizeEvent::from_width_height(100, 100, &e);
let y: Option<Input> = x.clone()
.unwrap()
.resize(|w, h| ResizeEvent::from_width_height(w, h, x.as_ref().unwrap()))
.unwrap();
assert_eq!(x, y);
}
}