ux-animate 0.1.5

Backend and runtime agnostic animation library
Documentation
1
2
3
4
5
6
7
8
9
// Utils
pub struct Sequence(usize);

impl Sequence {
    pub fn next_id(&mut self) -> usize {
        self.0 += 1;
        self.0
    }
}