animate/tween/
tween.rs

1pub struct Tween {}
2
3impl Tween {
4    pub fn get_id() -> usize {
5        unimplemented!()
6    }
7
8    pub fn is_playing() -> bool {
9        unimplemented!()
10    }
11
12    pub fn is_paused() -> bool {
13        unimplemented!()
14    }
15
16    pub fn to() -> bool {
17        unimplemented!()
18    }
19
20    pub fn duration() -> bool {
21        unimplemented!()
22    }
23
24    pub fn start() -> bool {
25        unimplemented!()
26    }
27
28    pub fn stop() -> bool {
29        unimplemented!()
30    }
31
32    pub fn end() -> bool {
33        unimplemented!()
34    }
35
36    pub fn pause() -> bool {
37        unimplemented!()
38    }
39
40    pub fn resume() -> bool {
41        unimplemented!()
42    }
43
44    pub fn stop_chained_tweens() -> bool {
45        unimplemented!()
46    }
47
48    pub fn group() -> bool {
49        unimplemented!()
50    }
51
52    pub fn delay() -> bool {
53        unimplemented!()
54    }
55
56    pub fn repeat() -> bool {
57        unimplemented!()
58    }
59
60    pub fn repeat_delay() -> bool {
61        unimplemented!()
62    }
63
64    pub fn yoyo() -> bool {
65        unimplemented!()
66    }
67
68    pub fn easing() -> bool {
69        unimplemented!()
70    }
71
72    pub fn interpolation() -> bool {
73        unimplemented!()
74    }
75
76    pub fn chain() -> bool {
77        unimplemented!()
78    }
79
80    pub fn on_start() -> bool {
81        unimplemented!()
82    }
83
84    pub fn on_update() -> bool {
85        unimplemented!()
86    }
87
88    pub fn on_repeat() -> bool {
89        unimplemented!()
90    }
91
92    pub fn on_complete() -> bool {
93        unimplemented!()
94    }
95
96    pub fn on_stop() -> bool {
97        unimplemented!()
98    }
99
100    pub fn update() -> bool {
101        unimplemented!()
102    }
103}