The traits for generic atomic operations in Rust.
The crate is tested for rustc 1.8 and greater.
Add this to your Cargo.toml
:
toml
[dependencies]
atomic-traits = "0.1"
and this to your crate root:
rust
extern crate atomic_traits;
```rust use std::sync::atomic::{AtomicUsize, Ordering};
use numtraits::One; use atomictraits::{Atomic, NumOps, fetch};
pub struct RefCnt
impl
pub fn dec(&self) -> <T as Atomic>::Type {
self.0.fetch_sub(<T as Atomic>::Type::one(), Ordering::Release)
}
pub fn val(&self) -> <T as Atomic>::Type {
self.0.load(Ordering::SeqCst)
}
}
let refcnt = RefCnt::
asserteq!(refcnt.inc(), 0); asserteq!(refcnt.dec(), 1); assert_eq!(refcnt.val(), 0); ```