[][src]Struct crossbeam::epoch::CompareAndSetError

pub struct CompareAndSetError<'g, T, P> where
    P: Pointer<T>,
    T: 'g, 
{ 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, P> Debug for CompareAndSetError<'g, T, P> where
    P: Pointer<T> + Debug,
    T: 'g, 
[src]

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From<T> for 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]