Struct crossbeam::epoch::CompareExchangeError [−][src]
pub struct CompareExchangeError<'g, T, P> where
T: Pointable + ?Sized,
P: Pointer<T>, {
pub current: Shared<'g, T>,
pub new: P,
}Expand description
The error returned on failed compare-and-swap operation.
Fields
current: Shared<'g, T>The value in the atomic pointer at the time of the failed operation.
new: PThe new value, which the operation failed to store.
