Crates.io | UpdateFunctions |
lib.rs | UpdateFunctions |
version | 0.1.6 |
source | src |
created_at | 2022-04-16 04:31:10.852829 |
updated_at | 2022-04-16 21:58:03.400435 |
description | A small package for calling a function at a desired interval |
homepage | |
repository | |
max_upload_size | |
id | 568831 |
size | 2,767,806 |
A small package for calling a function at a desired interval
fn main() {
let dur = Duration::new(1, 0) // One second and 0 ms
UpdateFunctions::update(dur, Update)
}
pub fn Update() {
println!("Updating!");
}
In cargo.toml
UpdateFunctions = "0.1.3"