[][src]Struct ccl_crossbeam_epoch::CompareAndSetError

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

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

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

Auto Trait Implementations

impl<'g, T, P> Unpin for CompareAndSetError<'g, T, P> where
    P: Unpin,
    T: Unpin

impl<'g, T, P> !Sync for CompareAndSetError<'g, T, P>

impl<'g, T, P> !Send for CompareAndSetError<'g, T, P>

impl<'g, T, P> RefUnwindSafe for CompareAndSetError<'g, T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

impl<'g, T, P> UnwindSafe for CompareAndSetError<'g, T, P> where
    P: UnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]