[][src]Struct crossbeam_epoch::atomic::CompareAndSetError

pub struct CompareAndSetError<'g, H: Handle, P: Pointer<H>> where
    H::Target: 'g, 
{ pub current: Shared<'g, H>, pub new: P, }

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

Fields

current: Shared<'g, H>

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, H: Handle, P: Pointer<H> + Debug> Debug for CompareAndSetError<'g, H, P> where
    H::Target: 'g, 
[src]

Auto Trait Implementations

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

impl<'g, H, P> Send for CompareAndSetError<'g, H, P> where
    H: Send,
    P: Send

impl<'g, H, P> Sync for CompareAndSetError<'g, H, P> where
    H: Sync,
    P: Sync

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

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

Blanket Implementations

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

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

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

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.