#portable-atomic #atomic #enums

portable_atomic_enum

An attribute to create an portable atomic wrapper around a C-style enum

6 releases

0.3.1 Mar 3, 2024
0.3.0 Nov 14, 2023
0.2.0 Nov 13, 2023
0.1.2 Oct 18, 2023

#528 in Concurrency

Download history 5131/week @ 2025-10-13 4291/week @ 2025-10-20 4277/week @ 2025-10-27 5919/week @ 2025-11-03 4947/week @ 2025-11-10 5415/week @ 2025-11-17 5401/week @ 2025-11-24 7596/week @ 2025-12-01 4665/week @ 2025-12-08 5519/week @ 2025-12-15 2748/week @ 2025-12-22 3604/week @ 2025-12-29 5623/week @ 2026-01-05 6169/week @ 2026-01-12 5506/week @ 2026-01-19 6337/week @ 2026-01-26

24,473 downloads per month
Used in 10 crates (2 directly)

MIT license

6KB

cargo version docs.rs version

portable_atomic_enum

This crate is a fork of atomic_enum and optionally uses portable-atomic to support more targets.

An attribute to create an atomic wrapper around a C-style enum.

Internally, the generated wrapper uses an AtomicUsize to store the value. The atomic operations have the same semantics as the equivalent operations of AtomicUsize.

Example

# use atomic_enum::atomic_enum;
# use std::sync::atomic::Ordering;
#[atomic_enum]
#[derive(Clone, Copy, Debug, PartialEq)]
enum CatState {
    Dead = 0,
    BothDeadAndAlive,
    Alive,
}

let state = AtomicCatState::new(CatState::Dead);
state.store(CatState::Alive, Ordering::Relaxed);
assert_eq!(state.load(Ordering::Relaxed), CatState::Alive);

This attribute does not use or generate any unsafe code.

The crate can be used in a #[no_std] environment.

Cargo features

  • portable-atomic: polyfill atomic types using portable-atomic

Dependencies

~0.1–0.8MB
~18K SLoC