#closures #once #run

run_once

Runs code in rust once, from a closure

3 releases

0.1.2 Feb 10, 2025
0.1.1 Feb 10, 2025
0.1.0 Feb 10, 2025

#19 in #once

Download history 240/week @ 2025-02-05 85/week @ 2025-02-12 12/week @ 2025-02-26

337 downloads per month

GPL-3.0-only

3KB

Run Once

Code inside the closure (of the same value*) will only run once.

r.run_once(1, || {
  // do stuff here!
});

Two closures of different values will both run once.

r.run_once(1, || {});
r.run_once(2, || {});

Example

fn test() {
  let mut data = RunOnce::default();
  let mut value = 0;

  for _ in 0..5 {
    data.run_once(1, || {
      value += 1;
    });
  }
  assert_eq!(value, 1);
}

No runtime deps