1
0
Fork 0

Implement PersistentField for AtomicRefCell

This commit is contained in:
Robbert van der Helm 2022-03-03 21:20:44 +01:00
parent 80b1bf12f2
commit 4160970571

View file

@ -248,5 +248,20 @@ macro_rules! impl_persistent_field_parking_lot_mutex {
};
}
impl<'a, T> PersistentField<'a, T> for atomic_refcell::AtomicRefCell<T>
where
T: serde::Serialize + serde::Deserialize<'a> + Send + Sync,
{
fn set(&self, new_value: T) {
*self.borrow_mut() = new_value;
}
fn map<F, R>(&self, f: F) -> R
where
F: Fn(&T) -> R,
{
f(&self.borrow())
}
}
impl_persistent_field_parking_lot_mutex!(parking_lot::Mutex<T>);
impl_persistent_field_parking_lot_mutex!(parking_lot::FairMutex<T>);