Crates.io | atomic-destroy |
lib.rs | atomic-destroy |
version | 0.1.0 |
source | src |
created_at | 2020-06-11 15:38:11.948143 |
updated_at | 2020-06-11 15:38:11.948143 |
description | An value which can be atomically read and destroyed; like an atomic Option. |
homepage | |
repository | https://github.com/Koxiaet/atomic-destroy |
max_upload_size | |
id | 252830 |
size | 9,892 |
This crate provides a type which can hold a value and can be atomically destroyed; like an atomic
Option
.
It does not require the standard library.
use atomic_destroy::AtomicDestroy;
let value = AtomicDestroy::new(Box::new(5));
assert_eq!(**value.get().unwrap(), 5);
value.destroy();
// The Box's destructor is run here.
assert!(value.get().is_none());