Struct crossbeam_epoch::CompareExchangeError
source · [−]pub struct CompareExchangeError<'g, T: ?Sized + Pointable, 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: P
The new value, which the operation failed to store.
Trait Implementations
Auto Trait Implementations
impl<'g, T: ?Sized, P> RefUnwindSafe for CompareExchangeError<'g, T, P> where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<'g, T, P> !Send for CompareExchangeError<'g, T, P>
impl<'g, T, P> !Sync for CompareExchangeError<'g, T, P>
impl<'g, T: ?Sized, P> Unpin for CompareExchangeError<'g, T, P> where
P: Unpin,
impl<'g, T: ?Sized, P> UnwindSafe for CompareExchangeError<'g, T, P> where
P: UnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more