Struct crossbeam_epoch::CompareAndSetError [] [src]

pub struct CompareAndSetError<'g, T: 'g, P: Pointer<T>> {
    pub current: Shared<'g, T>,
    pub new: P,
}

The error returned on failed compare-and-set operation.

Fields

The value in the atomic pointer at the time of the failed operation.

The new value, which the operation failed to store.

Trait Implementations

impl<'g, T: 'g, P: Pointer<T> + Debug> Debug for CompareAndSetError<'g, T, P>
[src]

[src]

Formats the value using the given formatter.