init-hook

Crates.ioinit-hook
lib.rsinit-hook
version2.0.0
created_at2025-03-19 05:53:14.769423+00
updated_at2025-03-19 07:21:35.127714+00
descriptionGuaranteed one-time initialization
homepage
repositoryhttps://github.com/Bajix/init-hook/
max_upload_size
id1597738
size23,422
Thomas Sieverding (Bajix)

documentation

README

License License Cargo Documentation

Init Hook

This crate allows registering functions for guaranteed initialization during main

Example

use std::sync::atomic::{AtomicUsize, Ordering};
static COUNTER: AtomicUsize = AtomicUsize::new(0);

// Register function to be called exactly once during init
#[init_hook::call_on_init]
fn init_once() {
    COUNTER.fetch_add(1, Ordering::Release);
}

// Registered functions can also be unsafe
#[init_hook::call_on_init]
unsafe fn init_once_unchecked() {
    COUNTER.fetch_add(1, Ordering::Release);
}

fn main() {
    // This is enforced by a pre-main assertion to always be included exactly once
    init_hook::init!();
    assert_eq!(COUNTER.load(Ordering::Acquire), 2);
}

Platform support

Linux macOS Windows FreeBSD OpenBSD illumos Other
💚 💚 💚 💚 💚 💚

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Commit count: 6

cargo fmt