#called #no-std

no-std once

This crate provides an assert_has_not_been_called! macro that panics if the surrounding function is called twice. Useful for initialization functions.

10 releases

Uses old Rust 2015

0.3.4 Apr 2, 2020
0.3.3 Jul 8, 2017
0.3.2 May 14, 2016
0.2.1 Apr 11, 2016
0.1.3 Apr 11, 2016

#1149 in Rust patterns

Download history 159/week @ 2023-10-26 137/week @ 2023-11-02 134/week @ 2023-11-09 164/week @ 2023-11-16 132/week @ 2023-11-23 168/week @ 2023-11-30 101/week @ 2023-12-07 150/week @ 2023-12-14 146/week @ 2023-12-21 71/week @ 2023-12-28 102/week @ 2024-01-04 129/week @ 2024-01-11 128/week @ 2024-01-18 86/week @ 2024-01-25 84/week @ 2024-02-01 137/week @ 2024-02-08

448 downloads per month
Used in 2 crates

Apache-2.0/MIT

7KB
65 lines

Once

Build Status

This #![no_std] crate provides an assert_has_not_been_called! macro that panics if the surrounding function is called twice. Useful for initialization functions.

Documentation

Example

#[macro_use]
extern crate once;

fn init() {
    assert_has_not_been_called!("the init function must only be called {}", "once");
}

fn main() {
    init();
    // init(); // "the init function must only be called once"
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps