#interval #calling #update #function #dur

UpdateFunctions

A small package for calling a function at a desired interval

6 releases

0.1.6 Apr 16, 2022
0.1.5 Apr 16, 2022

#2553 in Rust patterns

22 downloads per month

MIT license

2.5MB

Update Functions

A small package for calling a function at a desired interval

Usage

fn main() {
let dur = Duration::new(1, 0) // One second and 0 ms
UpdateFunctions::update(dur, Update)
}

pub fn Update() {
println!("Updating!");
}

Installation

In cargo.toml

UpdateFunctions = "0.1.3"

No runtime deps