Struct crossbeam_epoch::CompareAndSetError
source · Expand description
The error returned on failed compare-and-set 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, P> RefUnwindSafe for CompareAndSetError<'g, T, P>where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<'g, T, P> !Send for CompareAndSetError<'g, T, P>
impl<'g, T, P> !Sync for CompareAndSetError<'g, T, P>
impl<'g, T, P> Unpin for CompareAndSetError<'g, T, P>where
P: Unpin,
impl<'g, T, P> UnwindSafe for CompareAndSetError<'g, T, P>where
P: UnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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